diff options
author | Quentin Carbonneaux <quentin@c9x.me> | 2023-03-15 22:07:18 +0100 |
---|---|---|
committer | Quentin Carbonneaux <quentin@c9x.me> | 2023-03-15 22:07:18 +0100 |
commit | 6f45894c7f5f145208e0fce4344b2b87eb8ae722 (patch) | |
tree | 7e7fb7a24d21f3ea36e5d8b22b5b548e77c15236 /amd64 | |
parent | 498af259eb087e38f22c7ba49615cd38e271fabd (diff) | |
download | roux-6f45894c7f5f145208e0fce4344b2b87eb8ae722.tar.gz |
silence some warnings
Diffstat (limited to 'amd64')
-rw-r--r-- | amd64/sysv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/amd64/sysv.c b/amd64/sysv.c index 04dfd83..74db60c 100644 --- a/amd64/sysv.c +++ b/amd64/sysv.c @@ -512,7 +512,7 @@ split(Fn *fn, Blk *b) idup(&bn->ins, curi, bn->nins); curi = &insb[NIns]; bn->visit = ++b->visit; - (void)!snprintf(bn->name, NString, "%s.%d", b->name, b->visit); + snprintf(bn->name, NString, "%s.%d", b->name, b->visit); bn->loop = b->loop; bn->link = b->link; b->link = bn; |