From b4224c9c6c7d89022dc90474ea6b5d89ea268103 Mon Sep 17 00:00:00 2001 From: David Greenman Date: Mon, 7 Aug 1995 08:40:49 +0000 Subject: [PATCH] Woops, I committed the wrong version of the diff in the last rev. --- sys/kern/subr_prf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/kern/subr_prf.c b/sys/kern/subr_prf.c index c817d0f14daf..e808c4f6274a 100644 --- a/sys/kern/subr_prf.c +++ b/sys/kern/subr_prf.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)subr_prf.c 8.3 (Berkeley) 1/21/94 - * $Id: subr_prf.c,v 1.15 1995/08/06 22:00:17 davidg Exp $ + * $Id: subr_prf.c,v 1.16 1995/08/07 07:58:18 davidg Exp $ */ #include @@ -511,7 +511,7 @@ putchar(c, flags, tp) mbp->msg_magic = MSG_MAGIC; } mbp->msg_bufc[mbp->msg_bufx++] = c; - if (mbp->msg_bufx < 0 || mbp->msg_bufx >= MSG_BSIZE) + if (mbp->msg_bufx >= MSG_BSIZE) mbp->msg_bufx = 0; /* If the buffer is full, keep the most recent data. */ if (mbp->msg_bufr == mbp->msg_bufx) {