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:
+1
-1
@@ -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'.
|
||||
|
||||
Reference in New Issue
Block a user