From fb079870a636e776d02df1710c5728ed134584ca Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sat, 22 Jan 2005 16:00:35 +0000 Subject: [PATCH] r10269: fix word size for sbcl-amd64 --- src/primitives.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/primitives.lisp b/src/primitives.lisp index 3eb0761..02348a3 100644 --- a/src/primitives.lisp +++ b/src/primitives.lisp @@ -152,7 +152,7 @@ supports takes advantage of this optimization." (:unsigned-byte . (sb-alien:unsigned 8)) (:short . sb-alien:short) (:unsigned-short . sb-alien:unsigned-short) - (:int . sb-alien:integer) (:unsigned-int . sb-alien:unsigned-int) + (:int . sb-alien:int) (:unsigned-int . sb-alien:unsigned-int) (:long . sb-alien:long) (:unsigned-long . sb-alien:unsigned-long) (:float . sb-alien:float) (:double . sb-alien:double) (:array . sb-alien:array))) -- 2.34.1