0
0
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:
Elyes Haouas
2023-02-02 11:31:07 +01:00
committed by H. Peter Anvin
parent f6a17a29c0
commit fc720e7040
3 changed files with 23 additions and 23 deletions

View File

@@ -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