summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib.c b/lib.c
index d74a864d..cc81745c 100644
--- a/lib.c
+++ b/lib.c
@@ -183,11 +183,9 @@ val typeof(val obj)
}
}
-val type_check(val obj, int typecode)
+val throw_mismatch(val obj, type_t t)
{
- if (type(obj) != typecode)
- type_mismatch(lit("~s is not of type ~s"), obj, code2type(typecode), nao);
- return t;
+ type_mismatch(lit("~s is not of type ~s"), obj, code2type(t), nao);
}
val type_check2(val obj, int t1, int t2)