From bc076eac2fdc52218cffa0b9ce3cb76b7c3a8b89 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 11 Apr 2003 14:06:02 +0000 Subject: [PATCH] Remove anachronistic casts of xmalloc, xrealloc, and xcalloc return values. --- lib/bumpalloc.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/bumpalloc.h b/lib/bumpalloc.h index 1f55b9a..39ea720 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)); \ } \ } \ -- 2.7.4