diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-02 22:29:20 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-02 22:29:20 +0000 |
commit | c1b1eb375e5498da4ce43b299e7ca16810200351 (patch) | |
tree | 2f7f8d700b62fca370aad5acf5cd767df5169802 | |
parent | 79ec5f1cb9103d22ecbe683299c3d7bb72e8cb6e (diff) |
KNF
-rw-r--r-- | usr.bin/talk/ctl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/talk/ctl.c b/usr.bin/talk/ctl.c index 7e2394a9c96..0da3ffda3d9 100644 --- a/usr.bin/talk/ctl.c +++ b/usr.bin/talk/ctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ctl.c,v 1.5 1999/03/03 20:43:30 millert Exp $ */ +/* $OpenBSD: ctl.c,v 1.6 2002/06/02 22:29:19 deraadt Exp $ */ /* $NetBSD: ctl.c,v 1.3 1994/12/09 02:14:10 jtc Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)ctl.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: ctl.c,v 1.5 1999/03/03 20:43:30 millert Exp $"; +static char rcsid[] = "$OpenBSD: ctl.c,v 1.6 2002/06/02 22:29:19 deraadt Exp $"; #endif /* not lint */ /* @@ -113,7 +113,7 @@ print_addr(addr) printf("addr = %s, port = %o, family = %o zero = ", inet_ntoa(addr.sin_addr), addr.sin_port, addr.sin_family); - for (i = 0; i<8;i++) - printf("%o ", (int)addr.sin_zero[i]); + for (i = 0; i < 8; i++) + printf("%o ", (int)addr.sin_zero[i]); putchar('\n'); } |