From: Denis Vlasenko Date: Sun, 1 Jul 2007 17:29:44 +0000 (-0000) Subject: find: style fix X-Git-Tag: 1_7_0~163 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=99fcc6252332599c1b620d05467cee188a48b718;p=oweals%2Fbusybox.git find: style fix --- diff --git a/findutils/find.c b/findutils/find.c index 07cae971e..cb57665d6 100644 --- a/findutils/find.c +++ b/findutils/find.c @@ -758,12 +758,12 @@ static action*** parse_params(char **argv) #define XATOU_SFX xatoul_sfx #endif static const struct suffix_mult find_suffixes[] = { - { "c", 1 }, - { "w", 2 }, - { "b"+1, 512 }, - { "b", 512 }, - { "k", 1024 }, - { NULL, 0 } + { "c", 1 }, + { "w", 2 }, + { "b"+1, 512 }, + { "b", 512 }, + { "k", 1024 }, + { NULL, 0 } }; action_size *ap; ap = ALLOC_ACTION(size);