From: Jim Meyering Date: Fri, 11 Apr 2003 14:06:02 +0000 (+0000) Subject: Remove anachronistic casts of xmalloc, xrealloc, and xcalloc return values. X-Git-Tag: v5.0.1~706 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bc076eac2fdc52218cffa0b9ce3cb76b7c3a8b89;p=thirdparty%2Fcoreutils.git Remove anachronistic casts of xmalloc, xrealloc, and xcalloc return values. --- diff --git a/lib/bumpalloc.h b/lib/bumpalloc.h index 1f55b9ad9f..39ea7206e7 100644 --- a/lib/bumpalloc.h +++ b/lib/bumpalloc.h @@ -1,5 +1,5 @@ /* BUMP_ALLOC macro - increase table allocation by one element. - Copyright (C) 1990, 1991, 1993, 1998, 2000 Free Software Foundation, Inc. + Copyright (C) 1990, 1991, 1993, 1998, 2000, 2003 Free Software Foundation, Inc. François Pinard , 1990. This program is free software; you can redistribute it and/or modify @@ -54,9 +54,9 @@ if (((Count) & (~(~0 << (Exponent)))) == 0) \ { \ if ((Count) == 0) \ - (Table) = (Type *) xmalloc ((1 << (Exponent)) * (Size)); \ + (Table) = xmalloc ((1 << (Exponent)) * (Size)); \ else \ - (Table) = (Type *) \ + (Table) = \ xrealloc ((Table), ((Count) + (1 << (Exponent))) * (Size)); \ } \ } \