diff options
author | Jim Meyering <jim@meyering.net> | 2001-11-11 15:08:48 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-11-11 15:08:48 +0000 |
commit | 4bdaed5ff442abc37fa01e1960ac4c26f416fb36 (patch) | |
tree | adbeb721acc093bf8734f6041c302926386bb76f /src | |
parent | f7eb4c8913cd6466edd7040013819e0afbc519bf (diff) | |
download | coreutils-4bdaed5ff442abc37fa01e1960ac4c26f416fb36.tar.xz |
(xwrite): Remove assertion that size_t N >= 0.
Diffstat (limited to 'src')
-rw-r--r-- | src/tail.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tail.c b/src/tail.c index 50774dffd..4973ef64b 100644 --- a/src/tail.c +++ b/src/tail.c @@ -323,7 +323,6 @@ static void xwrite (int fd, char *const buffer, size_t n_bytes) { assert (fd == STDOUT_FILENO); - assert (n_bytes >= 0); if (n_bytes > 0 && fwrite (buffer, 1, n_bytes, stdout) == 0) error (EXIT_FAILURE, errno, _("write error")); } |