X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=web-utils.lisp;h=35611eb0b9739bdd5c0c4b28d376ee84e0f1e008;hp=64f98176b3a286db11dcf8ca9b03a9b72cae3aa3;hb=2f65fd6d93691f3943182138efd2013c3fdb67c7;hpb=547cd5d282aa4531b5d05eddb981df90a03bf59b diff --git a/web-utils.lisp b/web-utils.lisp index 64f9817..35611eb 100644 --- a/web-utils.lisp +++ b/web-utils.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: web-utils.lisp,v 1.15 2003/06/17 04:56:02 kevin Exp $ +;;;; $Id$ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -89,7 +89,7 @@ (declare (simple-string s) (optimize (speed 3) (safety 0) (space 0))) (do* ((old-len (length s)) - (new-len (- old-len (* 2 (count-string-char s #\%)))) + (new-len (- old-len (* 2 (the fixnum (count-string-char s #\%))))) (new (make-string new-len)) (p-old 0) (p-new 0 (1+ p-new)))