From: espen Date: Tue, 28 Dec 2004 20:27:52 +0000 (+0000) Subject: Bug fix X-Git-Tag: clg-0-90~134 X-Git-Url: https://git.distorted.org.uk/~mdw/clg/commitdiff_plain/206938929975b23a22f153937270fa8e2508ecc0?hp=93cd8228680453b3bdd8f7ab6874ea60c6cb4042 Bug fix --- diff --git a/glib/ffi.lisp b/glib/ffi.lisp index 86d0045..267da64 100644 --- a/glib/ffi.lisp +++ b/glib/ffi.lisp @@ -15,7 +15,7 @@ ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -;; $Id: ffi.lisp,v 1.10 2004/12/26 11:40:14 espen Exp $ +;; $Id: ffi.lisp,v 1.11 2004/12/28 20:27:52 espen Exp $ (in-package "GLIB") @@ -378,7 +378,7 @@ (defmethod alien-type ((type (eql 'unsigned-byte)) &rest args) (destructuring-bind (&optional (size '*)) args (ecase size - (#.+bits-of-byte+ '(unsigned-byte 8)) + (#.+bits-of-byte+ '(unsigned #|-byte|# 8)) (#.+bits-of-short+ 'c-call:unsigned-short) ((* #.+bits-of-int+) 'c-call:unsigned-int) (#.+bits-of-long+ 'c-call:unsigned-long))))