Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'findutils')
-rw-r--r--findutils/find.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/findutils/find.c b/findutils/find.c
index eaf1d5946..47cba7c88 100644
--- a/findutils/find.c
+++ b/findutils/find.c
@@ -760,10 +760,10 @@ static action*** parse_params(char **argv)
static const struct suffix_mult find_suffixes[] = {
{ "c", 1 },
{ "w", 2 },
- { "b"+1, 512 },
+ { "", 512 },
{ "b", 512 },
{ "k", 1024 },
- { NULL, 0 }
+ { }
};
action_size *ap;
ap = ALLOC_ACTION(size);