diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-10-05 17:34:26 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-10-05 17:34:26 -0400 |
commit | 60aacea0c3dad234b59dcfeb5d50e3de69662515 (patch) | |
tree | 56d8ecd7b4b656aa16ec76004e1a3f2bb570243c /lisc/parse.c | |
parent | 2d8b7a6baf0845781d07e40b5f8df0752f27daa8 (diff) | |
download | roux-60aacea0c3dad234b59dcfeb5d50e3de69662515.tar.gz |
rename blocka to balloc
Diffstat (limited to 'lisc/parse.c')
-rw-r--r-- | lisc/parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/parse.c b/lisc/parse.c index 0164b15..6e7cff1 100644 --- a/lisc/parse.c +++ b/lisc/parse.c @@ -412,7 +412,7 @@ findblk(char *name) if (i == NBlk) err("too many blocks"); if (!bmap[i]) { - bmap[i] = blocka(); + bmap[i] = balloc(); nblk++; strcpy(bmap[i]->name, name); } |