summaryrefslogtreecommitdiffstats
path: root/byterun/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'byterun/alloc.c')
-rw-r--r--byterun/alloc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/byterun/alloc.c b/byterun/alloc.c
index d0fc9d65c..9bb3575d1 100644
--- a/byterun/alloc.c
+++ b/byterun/alloc.c
@@ -52,7 +52,8 @@ value alloc_small (mlsize_t wosize, tag_t tag)
{
value result;
- Assert (wosize > 0 && wosize <= Max_young_wosize);
+ Assert (wosize > 0)
+ Assert (wosize <= Max_young_wosize);
Assert (tag < 256);
Alloc_small (result, wosize, tag);
return result;