From f9abf8f0602aa1f0b9e0ebfb7bd814830b1a88c7 Mon Sep 17 00:00:00 2001 From: Moritz Schulte Date: Mon, 10 Nov 2008 19:18:28 +0000 Subject: 2008-11-08 Moritz * lang/cl/gpg-error.lisp ("gpg_err_code_from_syserror"): Fix defcfun: removed "(void)". * lang/cl/gpg-error.lisp (size-t): Wrong call to defctype: function accepts optional, not keyword argument. (gpg-error-t): Likewise. --- lang/cl/gpg-error.lisp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'lang') diff --git a/lang/cl/gpg-error.lisp b/lang/cl/gpg-error.lisp index c0948be..cad2532 100644 --- a/lang/cl/gpg-error.lisp +++ b/lang/cl/gpg-error.lisp @@ -31,8 +31,7 @@ ;;; System dependencies. -(defctype size-t :unsigned-int - :documentation "The system size_t type.") +(defctype size-t :unsigned-int "The system size_t type.") ;;; Error sources. @@ -62,8 +61,7 @@ ;;; libgpg-error-codes.lisp is loaded by ASDF. -(defctype gpg-error-t :unsigned-int - :documentation "The GPG error code type.") +(defctype gpg-error-t :unsigned-int "The GPG error code type.") ;;; Bit mask manipulation constants. @@ -111,8 +109,7 @@ (code gpg-err-code-t)) (defcfun ("gpg_err_code_from_syserror" - c-gpg-err-code-from-syserror) gpg-err-code-t - (void)) + c-gpg-err-code-from-syserror) gpg-err-code-t) ;;; Self-documenting convenience functions. -- cgit v1.2.1