From: Jim Meyering Date: Sun, 28 Sep 2003 08:21:35 +0000 (+0000) Subject: Remove unnecessary casts of alloca, since now it's guaranteed to be (void *). X-Git-Tag: v5.1.0~519 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f98e0e4ddaaf6a87be975ea8e4e3a20fd3d4925;p=thirdparty%2Fcoreutils.git Remove unnecessary casts of alloca, since now it's guaranteed to be (void *). --- diff --git a/src/od.c b/src/od.c index b1f6ca3209..d362e66ad8 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;