X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Fstrtol.cl;h=eefee46e261175b7654c506ce7fc9004adb6a519;hb=cde97f93610fed90732887934ca16906fcf91dd5;hp=63aea44fb8546fa1a627f193fb44f78e62c78f37;hpb=fb93b1923db347f01bdebc7226e5e1eaacacc9f9;p=uffi.git diff --git a/tests/strtol.cl b/tests/strtol.cl index 63aea44..eefee46 100644 --- a/tests/strtol.cl +++ b/tests/strtol.cl @@ -1,4 +1,4 @@ -;;;; -*- Mode: ANSI-Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: strtol.cl,v 1.9 2002/03/17 17:33:30 kevin Exp $ +;;;; $Id: strtol.cl,v 1.11 2002/03/20 04:56:52 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -38,8 +38,7 @@ of first non-valid character" (let* ((str-native (uffi:convert-to-foreign-string str)) (endptr (uffi:allocate-foreign-object char-ptr)) (value (c-strtol str-native endptr base)) - (endptr-value (uffi:deref-pointer endptr 'char-ptr)) - next-char-value chars-parsed) + (endptr-value (uffi:deref-pointer endptr 'char-ptr))) (unwind-protect (if (uffi:null-pointer-p endptr-value)