summaryrefslogtreecommitdiff
path: root/src/od.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-09-28 08:21:35 +0000
committerJim Meyering <jim@meyering.net>2003-09-28 08:21:35 +0000
commit8f98e0e4ddaaf6a87be975ea8e4e3a20fd3d4925 (patch)
treee41c1465475b2b651f3e9b2186e873948a003d91 /src/od.c
parent793eadf8a9ad61a7a2d93579caa1be5714a55556 (diff)
downloadcoreutils-8f98e0e4ddaaf6a87be975ea8e4e3a20fd3d4925.tar.xz
Remove unnecessary casts of alloca, since now it's guaranteed to be (void *).
Diffstat (limited to 'src/od.c')
-rw-r--r--src/od.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/od.c b/src/od.c
index b1f6ca320..d362e66ad 100644
--- a/src/od.c
+++ b/src/od.c
@@ -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;