summary refs log tree commit diff
path: root/lisc/lisc.h
diff options
context:
space:
mode:
Diffstat (limited to 'lisc/lisc.h')
-rw-r--r--lisc/lisc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/lisc.h b/lisc/lisc.h
index ff80900..e353a09 100644
--- a/lisc/lisc.h
+++ b/lisc/lisc.h
@@ -88,7 +88,7 @@ enum {
 #define CON_Z    CON(0)          /* reserved zero constant */
 #define SLOT(x)  (Ref){RSlot, x}
 #define TYP(x)   (Ref){RAlt, x}
-#define CALL(x)  (Ref){RAlt, x|RCallm}
+#define CALL(x)  (Ref){RAlt, (x)|RCallm}
 
 static inline int req(Ref a, Ref b)
 { return a.type == b.type && a.val == b.val; }