From 7818c27f528880037cbbc517bf2cb6112013b9d9 Mon Sep 17 00:00:00 2001
From: dtc <dtc>
Date: Thu, 6 Jul 2000 04:31:17 +0000
Subject: [PATCH] Clarify an assertion on the result of truncate, firstly
 receiving the only the first value.

---
 code/serve-event.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/serve-event.lisp b/code/serve-event.lisp
index 9b4ea039c..3e2513dfb 100644
--- a/code/serve-event.lisp
+++ b/code/serve-event.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/serve-event.lisp,v 1.23 1997/12/29 19:01:36 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/serve-event.lisp,v 1.24 2000/07/06 04:31:17 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -265,7 +265,7 @@
      (multiple-value-bind (q r)
 			  (truncate (coerce timeout 'single-float))
        (declare (type index q) (single-float r))
-       (values q (the index (truncate (* r 1f6))))))
+       (values q (the index (values (truncate (* r 1f6)))))))
     (t
      (error "Timeout is not a real number or NIL: ~S" timeout))))
 
-- 
GitLab