summary refs log tree commit diff
path: root/amd64
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin@c9x.me>2023-03-15 22:07:18 +0100
committerQuentin Carbonneaux <quentin@c9x.me>2023-03-15 22:07:18 +0100
commit6f45894c7f5f145208e0fce4344b2b87eb8ae722 (patch)
tree7e7fb7a24d21f3ea36e5d8b22b5b548e77c15236 /amd64
parent498af259eb087e38f22c7ba49615cd38e271fabd (diff)
downloadroux-6f45894c7f5f145208e0fce4344b2b87eb8ae722.tar.gz
silence some warnings
Diffstat (limited to 'amd64')
-rw-r--r--amd64/sysv.c2
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;