diff options
| author | Jim Meyering <jim@meyering.net> | 2003-04-11 10:51:56 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 2003-04-11 10:51:56 +0000 |
| commit | 6c93bdeeaa8a322b76c48ffc17a2205f6c3f5271 (patch) | |
| tree | b96ee698e2bd8020d500f01cbf6d6efa743b8a69 /src/split.c | |
| parent | include xalloc.h (diff) | |
| download | coreutils-6c93bdeeaa8a322b76c48ffc17a2205f6c3f5271.tar.gz coreutils-6c93bdeeaa8a322b76c48ffc17a2205f6c3f5271.zip | |
Remove anachronistic casts of xmalloc,
xrealloc, and xcalloc return values and of xrealloc's first argument.
Diffstat (limited to 'src/split.c')
| -rw-r--r-- | src/split.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/split.c b/src/split.c index 70a3d9ad7..1b1ff2a7c 100644 --- a/src/split.c +++ b/src/split.c @@ -301,7 +301,7 @@ line_bytes_split (size_t n_bytes) char *bp; int eof = 0; size_t n_buffered = 0; - char *buf = (char *) xmalloc (n_bytes); + char *buf = xmalloc (n_bytes); do { |
