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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisc/lisc.h b/lisc/lisc.h
index e3ea528..2f6ada4 100644
--- a/lisc/lisc.h
+++ b/lisc/lisc.h
@@ -39,11 +39,11 @@ req(Ref a, Ref b)
 enum {
 	RSym = 0,
 	RConst = 1,
-	NRef = ((ushort)-1)>>1,
+	NRef = (1<<15) - 1
 };
 
-#define SYM(x)   (Ref){ RSym, x }
-#define CONST(x) (Ref){ RConst, x }
+#define SYM(x)   (Ref){RSym, x}
+#define CONST(x) (Ref){RConst, x}
 
 enum {
 	OXXX,