diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-09-17 20:58:22 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-09-17 20:58:22 +0200 |
commit | 7373759947ac54e9a9b3b1a26572cca5cdc9a0e6 (patch) | |
tree | d2e9da2955a8eac11cc27e0dd8433b13ac84999e /coreutils | |
parent | 7bc3d39695728c6257a95bc2d75e80d3e2431c8b (diff) | |
download | busybox-7373759947ac54e9a9b3b1a26572cca5cdc9a0e6.tar.gz |
fix "aloc" -> "alloc" typos
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/expr.c b/coreutils/expr.c index ce6b2d189..efc435443 100644 --- a/coreutils/expr.c +++ b/coreutils/expr.c @@ -114,7 +114,7 @@ static VALUE *int_value(arith_t i) VALUE *v; v = xzalloc(sizeof(VALUE)); - if (INTEGER) /* otherwise xzaaloc did it already */ + if (INTEGER) /* otherwise xzalloc did it already */ v->type = INTEGER; v->u.i = i; return v; @@ -127,7 +127,7 @@ static VALUE *str_value(const char *s) VALUE *v; v = xzalloc(sizeof(VALUE)); - if (STRING) /* otherwise xzaaloc did it already */ + if (STRING) /* otherwise xzalloc did it already */ v->type = STRING; v->u.s = xstrdup(s); return v; |