diff options
author | Jim Meyering <jim@meyering.net> | 1999-01-09 16:21:40 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-01-09 16:21:40 +0000 |
commit | fd008ba80b77d9f5495b99856ca357d6c433a256 (patch) | |
tree | 7c589a35d9103697675e2bb3a919af6095ae6542 /src | |
parent | 1eb017af63f272fad157701c92d1d973c2930c4d (diff) | |
download | coreutils-fd008ba80b77d9f5495b99856ca357d6c433a256.tar.xz |
declare `match'
Diffstat (limited to 'src')
-rw-r--r-- | src/uniq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/uniq.c b/src/uniq.c index ddc141416..d02790c2e 100644 --- a/src/uniq.c +++ b/src/uniq.c @@ -244,6 +244,7 @@ check_file (const char *infile, const char *outfile) while (!feof (istream)) { + int match; if (readline (thisline, istream) == 0) break; thisfield = find_field (thisline); |