summary refs log tree commit diff
path: root/amd64/sysv.c
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin@c9x.me>2023-03-22 11:43:42 +0100
committerQuentin Carbonneaux <quentin@c9x.me>2023-03-22 11:43:46 +0100
commit5fee3da6ac3b4995f0d9a6cef3a5e916208cca59 (patch)
tree84befbce5a3a2422792aa32db54e474f9e724aae /amd64/sysv.c
parenteb9fcece9e622712a60ad306ae83f4ac4a2a3571 (diff)
downloadroux-5fee3da6ac3b4995f0d9a6cef3a5e916208cca59.tar.gz
rename blknew() to newblk()
This is consistent with newtmp()
and newcon().
Diffstat (limited to 'amd64/sysv.c')
-rw-r--r--amd64/sysv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/amd64/sysv.c b/amd64/sysv.c
index 48ac0a5..5b559c1 100644
--- a/amd64/sysv.c
+++ b/amd64/sysv.c
@@ -507,7 +507,7 @@ split(Fn *fn, Blk *b)
 	Blk *bn;
 
 	++fn->nblk;
-	bn = blknew();
+	bn = newblk();
 	bn->nins = &insb[NIns] - curi;
 	idup(&bn->ins, curi, bn->nins);
 	curi = &insb[NIns];