From: Kevin M. Rosenberg Date: Thu, 15 Apr 2004 11:49:17 +0000 (+0000) Subject: r9015: fix typo for openmcl X-Git-Tag: v1.6.1~119 X-Git-Url: http://git.kpe.io/?p=uffi.git;a=commitdiff_plain;h=5d9a72c1d2b908bcf0624b833d853855c837425d r9015: fix typo for openmcl --- diff --git a/debian/changelog b/debian/changelog index 2994cb6..6162e82 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-uffi (1.4.11-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg Thu, 15 Apr 2004 05:48:48 -0600 + cl-uffi (1.4.10-1) unstable; urgency=low * New upstream diff --git a/src/objects.lisp b/src/objects.lisp index 82a9d0e..58b4da6 100644 --- a/src/objects.lisp +++ b/src/objects.lisp @@ -98,7 +98,7 @@ an array of TYPE with size SIZE. The TYPE parameter is evaluated." #+sbcl `(sb-alien:sap-alien (sb-sys:int-sap ,addr) (* ,(convert-from-uffi-type (eval type) :type))) #+lispworks `(fli:make-pointer :address ,addr :type (quote ,(convert-from-uffi-type (eval type) :type))) #+allegro addr - #+mcl `(ccl:%int-to-ptr addr) + #+mcl `(ccl:%int-to-ptr ,addr) ) (defmacro pointer-address (ptr)