From: Jim Meyering Date: Sat, 13 Apr 1996 18:11:43 +0000 (+0000) Subject: (decode_field_spec): Rename local variable `valid' X-Git-Tag: TEXTUTILS-1_14b~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4a20010e6803146a88004438d8b5992a2d90b43;p=thirdparty%2Fcoreutils.git (decode_field_spec): Rename local variable `valid' to invalid (and reverse sense) to avoid conflict with the macro definition in /usr/include/locale.h on SunOS 4.1.3. --- diff --git a/src/join.c b/src/join.c index 8b2b8bbd6c..1f6143984f 100644 --- a/src/join.c +++ b/src/join.c @@ -649,7 +649,7 @@ add_field (int file, int field) static int decode_field_spec (const char *s, int *file_index, int *field_index) { - int valid = 0; + int invalid = 1; /* The first character must be 0, 1, or 2. */ switch (s[0]) @@ -659,7 +659,7 @@ decode_field_spec (const char *s, int *file_index, int *field_index) { *file_index = 0; /* Leave *field_index undefined. */ - valid = 1; + invalid = 0; } else { @@ -685,7 +685,7 @@ decode_field_spec (const char *s, int *file_index, int *field_index) *file_index = s[0] - '0'; /* Convert to a zero-based index. */ *field_index = (int) tmp_long - 1; - valid = 1; + invalid = 0; } } break; @@ -694,7 +694,7 @@ decode_field_spec (const char *s, int *file_index, int *field_index) error (0, 0, _("invalid file number in field spec: `%s'"), s); break; } - return !valid; + return invalid; } /* Add the comma or blank separated field spec(s) in STR to `outlist'.