diff options
author | Quentin Carbonneaux <quentin@c9x.me> | 2022-09-02 12:08:52 +0200 |
---|---|---|
committer | Quentin Carbonneaux <quentin@c9x.me> | 2022-10-03 10:41:30 +0200 |
commit | 70f297bab7ae5d7291040b0305281a5fa8289f80 (patch) | |
tree | 85305108a954e2c21f16c3e529cf5fab7a189a77 /copy.c | |
parent | 79f3673d205617ac567f0566ebf8f450932d9976 (diff) | |
download | roux-70f297bab7ae5d7291040b0305281a5fa8289f80.tar.gz |
fix case of Pool constants
Diffstat (limited to 'copy.c')
-rw-r--r-- | copy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/copy.c b/copy.c index 593ce24..868d2ba 100644 --- a/copy.c +++ b/copy.c @@ -141,7 +141,7 @@ copy(Fn *fn) bsinit(ts, fn->ntmp); bsinit(as, fn->ntmp); cpy = emalloc(fn->ntmp * sizeof cpy[0]); - stk = vnew(10, sizeof stk[0], Pheap); + stk = vnew(10, sizeof stk[0], PHeap); /* 1. build the copy-of map */ for (n=0; n<fn->nblk; n++) { |