From: Jim Meyering Date: Sun, 13 Oct 2002 06:04:27 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: v4.5.3~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b9984330efabb7a1f49e044484e94069b904b81;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index bfcd045893..a5fe6e6c0e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,19 @@ * Version 4.5.3. + * src/paste.c (paste_parallel): Declare local, `delims_saved', to be + of type size_t, since that's the way it's used and avoids a warning. + + * src/csplit.c (struct cstring) [len]: Declare to be unsigned int, + since that's how it's always used and avoids a new warning from gcc. + (read_input): Adapt to new safe_read ABI. + + * src/cut.c (cut_fields): Add a temporary size_t variable, n_bytes, + to avoid warnings. + + * src/pinky.c (print_long_entry): fread returns size_t. + Declare local `bytes' accordingly, to avoid warning. + tail -c +N would perform an extra read after encountering EOF [this change is analogous (bytes vs. lines) to the one of 2002-01-27] * src/tail.c (start_bytes): Detect EOF, inform caller.