artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
69c4ee0
)
fix tab expansion
author
deraadt
<deraadt@openbsd.org>
Thu, 17 Apr 1997 21:28:22 +0000
(21:28 +0000)
committer
deraadt
<deraadt@openbsd.org>
Thu, 17 Apr 1997 21:28:22 +0000
(21:28 +0000)
sys/arch/i386/stand/libsa/dev_i386.c
patch
|
blob
|
history
diff --git
a/sys/arch/i386/stand/libsa/dev_i386.c
b/sys/arch/i386/stand/libsa/dev_i386.c
index
6619490
..
bf1bd19
100644
(file)
--- a/
sys/arch/i386/stand/libsa/dev_i386.c
+++ b/
sys/arch/i386/stand/libsa/dev_i386.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: dev_i386.c,v 1.
8 1997/04/15 21:35:13 mickey Exp $
*/
+/* $OpenBSD: dev_i386.c,v 1.
9 1997/04/17 21:28:22 deraadt Exp $
*/
/*
* Copyright (c) 1996 Michael Shalayeff
@@
-113,8
+113,9
@@
putchar(c)
switch(c) {
case '\t':
- while(++pos % 8)
+ do
putc(' ');
+ while(++pos % 8);
break;
case '\n':
putc('\r');