Skip to content

Commit f744ec4

Browse files
ElyesHH. Peter Anvin
authored andcommitted
Remove trailing semicolon in macros
Signed-off-by: Elyes Haouas <ehaouas@noos.fr> [ hpa: only one of the defined issues was valid, removed the rest. ] Signed-off-by: H. Peter Anvin <hpa@zytor.com>
1 parent d9494d5 commit f744ec4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asm/listing.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
static const char xdigit[] = "0123456789ABCDEF";
2323

24-
#define HEX(a,b) (*(a)=xdigit[((b)>>4)&15],(a)[1]=xdigit[(b)&15]);
24+
#define HEX(a,b) (*(a)=xdigit[((b)>>4)&15],(a)[1]=xdigit[(b)&15])
2525

2626
uint64_t list_options, active_list_options;
2727
bool user_nolist;

0 commit comments

Comments
 (0)