From: Jim Meyering Date: Sat, 7 Jun 2003 10:15:12 +0000 (+0000) Subject: Remove unnecessary parentheses around malloc. X-Git-Tag: v5.0.1~311 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18944fe43925e2c5a2ef90c8fde66894916e8127;p=thirdparty%2Fcoreutils.git Remove unnecessary parentheses around malloc. --- diff --git a/lib/readtokens.c b/lib/readtokens.c index 6b5d88ca8f..bb427729c0 100644 --- a/lib/readtokens.c +++ b/lib/readtokens.c @@ -62,7 +62,7 @@ init_tokenbuffer (tokenbuffer) token_buffer *tokenbuffer; { tokenbuffer->size = INITIAL_TOKEN_LENGTH; - tokenbuffer->buffer = (xmalloc (INITIAL_TOKEN_LENGTH)); + tokenbuffer->buffer = xmalloc (INITIAL_TOKEN_LENGTH); } /* Read a token from `stream' into `tokenbuffer'.