summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-10-13 06:04:27 +0000
committerJim Meyering <jim@meyering.net>2002-10-13 06:04:27 +0000
commit1b9984330efabb7a1f49e044484e94069b904b81 (patch)
tree4c8a9c4ba14a8765bf7e64f2fea6609c15e2a0d0 /ChangeLog
parentf175e3efc2fc22b8bbe21d609419d48c0f39f1de (diff)
downloadcoreutils-1b9984330efabb7a1f49e044484e94069b904b81.tar.xz
*** empty log message ***
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bfcd04589..a5fe6e6c0 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.