From 6b404431aa7adea24120894d59daeebc5cbe9727 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Mon, 7 Jan 2008 16:13:14 +0000 Subject: ps: fix build breakage from vda's recent commit *: whitespace fixes --- libbb/compare_string_array.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libbb/compare_string_array.c') 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; } -- cgit v1.1