diff options
author | Rob Landley <rob@landley.net> | 2006-05-29 06:43:55 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-05-29 06:43:55 +0000 |
commit | a6e131dab39ee67522687a56b39ed815b9ae15ec (patch) | |
tree | 1ca2de8c070d79096f6db1a4a614d00a0ef7800d /miscutils | |
parent | bba7f08d2788bc9bc30a7a60fdfd873a73fead9a (diff) | |
download | busybox-a6e131dab39ee67522687a56b39ed815b9ae15ec.tar.gz |
Size reductions, mostly switching things to use libbb functions.
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/strings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/strings.c b/miscutils/strings.c index bd07f5d3e..7758907c7 100644 --- a/miscutils/strings.c +++ b/miscutils/strings.c @@ -41,7 +41,7 @@ int strings_main(int argc, char **argv) argv += optind; n = bb_xgetlarg(n_arg, 10, 1, INT_MAX); - string = xcalloc(n + 1, 1); + string = xzalloc(n + 1); n--; if (argc == 0) { |