diff options
author | Denis Vlasenko | 2008-01-07 16:13:14 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-01-07 16:13:14 +0000 |
commit | 6b404431aa7adea24120894d59daeebc5cbe9727 (patch) | |
tree | f3ccda749daf6fe9f80f4ee99fbb5d1b0ed4cbb7 /libbb/compare_string_array.c | |
parent | 4e9ca75281a25dcdbb3e2d2fa79108b02afa43db (diff) | |
download | busybox-6b404431aa7adea24120894d59daeebc5cbe9727.zip busybox-6b404431aa7adea24120894d59daeebc5cbe9727.tar.gz |
ps: fix build breakage from vda's recent commit
*: whitespace fixes
Diffstat (limited to 'libbb/compare_string_array.c')
-rw-r--r-- | libbb/compare_string_array.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libbb/compare_string_array.c b/libbb/compare_string_array.c index 7b5ce85..151b508 100644 --- a/libbb/compare_string_array.c +++ b/libbb/compare_string_array.c @@ -70,9 +70,9 @@ int index_in_substrings(const char *strings, const char *key) const char *nth_string(const char *strings, int n) { - while (n) { - n--; - strings += strlen(strings) + 1; - } - return strings; + while (n) { + n--; + strings += strlen(strings) + 1; + } + return strings; } |