diff options
author | Jim Meyering <jim@meyering.net> | 2003-09-28 08:21:35 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-09-28 08:21:35 +0000 |
commit | 8f98e0e4ddaaf6a87be975ea8e4e3a20fd3d4925 (patch) | |
tree | e41c1465475b2b651f3e9b2186e873948a003d91 | |
parent | 793eadf8a9ad61a7a2d93579caa1be5714a55556 (diff) | |
download | coreutils-8f98e0e4ddaaf6a87be975ea8e4e3a20fd3d4925.tar.xz |
Remove unnecessary casts of alloca, since now it's guaranteed to be (void *).
-rw-r--r-- | src/od.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1425,8 +1425,8 @@ dump (void) int err; size_t n_bytes_read; - block[0] = (char *) alloca (bytes_per_block); - block[1] = (char *) alloca (bytes_per_block); + block[0] = alloca (bytes_per_block); + block[1] = alloca (bytes_per_block); current_offset = n_bytes_to_skip; |