diff options
| author | kleink <kleink@NetBSD.org> | 1998-05-09 20:59:29 +0000 |
|---|---|---|
| committer | kleink <kleink@NetBSD.org> | 1998-05-09 20:59:29 +0000 |
| commit | 1550a56403e70a8a979208a40fdbb3f88fc74dc0 (patch) | |
| tree | 16c3d360b7ce40c99d03f4013a7fbde1a6207501 /lib/libutil/ttymsg.c | |
| parent | b014edcabcafd351e93725a34769fdb8c2218c59 (diff) | |
Delint last.
Diffstat (limited to 'lib/libutil/ttymsg.c')
| -rw-r--r-- | lib/libutil/ttymsg.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libutil/ttymsg.c b/lib/libutil/ttymsg.c index 5effad6de1c..111b753528d 100644 --- a/lib/libutil/ttymsg.c +++ b/lib/libutil/ttymsg.c @@ -1,4 +1,4 @@ -/* $NetBSD: ttymsg.c,v 1.8 1998/05/08 17:23:45 kleink Exp $ */ +/* $NetBSD: ttymsg.c,v 1.9 1998/05/09 20:59:29 kleink Exp $ */ /* * Copyright (c) 1989, 1993 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)ttymsg.c 8.2 (Berkeley) 11/16/93"; #else -__RCSID("$NetBSD: ttymsg.c,v 1.8 1998/05/08 17:23:45 kleink Exp $"); +__RCSID("$NetBSD: ttymsg.c,v 1.9 1998/05/09 20:59:29 kleink Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -119,7 +119,8 @@ ttymsg(iov, iovcnt, line, tmout) --iovcnt; } if (wret) { - (char *)iov->iov_base += wret; + iov->iov_base = + (char *)iov->iov_base + wret; iov->iov_len -= wret; } continue; |
