mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-10-10 00:25:06 -04:00
Remove useless parentheses in return statements
Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
This commit is contained in:
committed by
H. Peter Anvin
parent
f6a17a29c0
commit
fc720e7040
@@ -1106,7 +1106,7 @@ extern macros_t macho_stdmac[];
|
||||
static int layout_compare (const struct symbol **s1,
|
||||
const struct symbol **s2)
|
||||
{
|
||||
return (strcmp ((*s1)->name, (*s2)->name));
|
||||
return strcmp ((*s1)->name, (*s2)->name);
|
||||
}
|
||||
|
||||
/* The native assembler does a few things in a similar function
|
||||
|
Reference in New Issue
Block a user