X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Fgethostname.cl;h=409afd979aebebcd43c5ce54db76bb124c446667;hb=f73eb94e15649aba5fcfbe3a900aa72f31f46a96;hp=fcec16e66fca67142cf7dc6abe89ed0432021cfe;hpb=ca7e9a2299773cfbc927d71e6289549601438b24;p=uffi.git diff --git a/tests/gethostname.cl b/tests/gethostname.cl index fcec16e..409afd9 100644 --- a/tests/gethostname.cl +++ b/tests/gethostname.cl @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: gethostname.cl,v 1.8 2002/03/22 20:51:08 kevin Exp $ +;;;; $Id: gethostname.cl,v 1.9 2002/03/23 16:32:39 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -38,7 +38,7 @@ (defun gethostname2 () "Returns the hostname" - (uffi:with-foreign-object (name (:array :unsigned-char 256)) + (uffi:with-foreign-object (name '(:array :unsigned-char 256)) (if (zerop (c-gethostname (uffi:char-array-to-pointer name) 256)) (uffi:convert-from-foreign-string name) (error "gethostname() failed."))))