From 7b95ed2bfbc4d721df49509ee1c48a2a06312929 Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Sat, 3 Jul 2010 15:20:25 +0000 Subject: [PATCH] Fix some compiler notes by adding declarations and removing one variable that was shadowing another. --- code/fd-stream.lisp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/fd-stream.lisp b/code/fd-stream.lisp index 2dc7af239..51508387e 100644 --- a/code/fd-stream.lisp +++ b/code/fd-stream.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.108 2010/07/03 14:10:40 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.109 2010/07/03 15:20:25 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -416,10 +416,10 @@ (cond ((stream::ef-flush-state ,(stream::find-external-format extfmt)) (let* ((sap (fd-stream-obuf-sap stream)) - (len (fd-stream-obuf-length stream)) - (tail (fd-stream-obuf-tail stream))) - (declare (type sys:system-area-pointer sap) (type index len tail)) - + (len (fd-stream-obuf-length stream))) + (declare (type sys:system-area-pointer sap) + (type index len) + (ignorable sap len)) (stream::flush-state ,extfmt (fd-stream-co-state stream) (lambda (byte) -- GitLab