aboutsummaryrefslogtreecommitdiff
path: root/cfg.c
diff options
context:
space:
mode:
authorQuentin Carbonneaux <[email protected]>2022-09-02 12:08:52 +0200
committerQuentin Carbonneaux <[email protected]>2022-10-03 10:41:30 +0200
commit70f297bab7ae5d7291040b0305281a5fa8289f80 (patch)
tree85305108a954e2c21f16c3e529cf5fab7a189a77 /cfg.c
parent79f3673d205617ac567f0566ebf8f450932d9976 (diff)
fix case of Pool constants
Diffstat (limited to 'cfg.c')
-rw-r--r--cfg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cfg.c b/cfg.c
index 36e6427..d12f6c8 100644
--- a/cfg.c
+++ b/cfg.c
@@ -209,7 +209,7 @@ addfron(Blk *a, Blk *b)
if (a->fron[n] == b)
return;
if (!a->nfron)
- a->fron = vnew(++a->nfron, sizeof a->fron[0], Pfn);
+ a->fron = vnew(++a->nfron, sizeof a->fron[0], PFn);
else
vgrow(&a->fron, ++a->nfron);
a->fron[a->nfron-1] = b;