diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-04-15 13:44:53 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-04-16 14:03:33 -0400 |
commit | 42ecd05b7fe8512f1624873010b988e48d6431b5 (patch) | |
tree | 188afbb7e1de8aa41509a5180732e0c080284c23 | |
parent | f4da7d9ccfac4b2f3eb9b1483bfb731acb22f14a (diff) | |
download | roux-42ecd05b7fe8512f1624873010b988e48d6431b5.tar.gz |
fix relic error message
-rw-r--r-- | parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.c b/parse.c index 096de1c..19575d9 100644 --- a/parse.c +++ b/parse.c @@ -784,7 +784,7 @@ parsefn(int export) ps = parseline(ps); while (ps != PEnd); if (!curb) - err("empty file"); + err("empty function"); if (curb->jmp.type == JXXX) err("last block misses jump"); curf->mem = vnew(0, sizeof curf->mem[0]); |