diff options
author | Peter Wemm <peter@FreeBSD.org> | 1995-07-17 04:38:30 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1995-07-17 04:38:30 +0000 |
commit | 0812a2b446b953f0c850d15151821d91b56ce94c (patch) | |
tree | 266c9d6de676a4cf7b6678416e4bade2b8cae77b /usr.bin | |
parent | 55cc9917962b95337a6c17c1d11468687197becb (diff) | |
download | src-0812a2b446b953f0c850d15151821d91b56ce94c.tar.gz src-0812a2b446b953f0c850d15151821d91b56ce94c.zip |
Notes
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/w/w.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/w/w.c b/usr.bin/w/w.c index b5075339c708..685057d81e7f 100644 --- a/usr.bin/w/w.c +++ b/usr.bin/w/w.c @@ -217,11 +217,11 @@ main(argc, argv) pr_header(&now, nusers); if (wcmd == 0) exit (0); - } #define HEADER "USER TTY FROM LOGIN@ IDLE WHAT\n" #define WUSED (sizeof (HEADER) - sizeof ("WHAT\n")) - (void)printf(HEADER); + (void)printf(HEADER); + } if ((kp = kvm_getprocs(kd, KERN_PROC_ALL, 0, &nentries)) == NULL) err(1, "%s", kvm_geterr(kd)); |