1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-11 11:37:48 +02:00

Remove unnecessary parentheses around malloc.

This commit is contained in:
Jim Meyering
2003-06-07 10:15:12 +00:00
parent 84faaa2188
commit 18944fe439
+1 -1
View File
@@ -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'.