summaryrefslogtreecommitdiff
path: root/usr.bin/systat
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2024-09-20 02:00:47 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2024-09-20 02:00:47 +0000
commited5be3cd5c0c9d7c05acb4a007ef174dfe1d20a2 (patch)
tree1f2c3605ce9ce75dae573fe64caa874965255235 /usr.bin/systat
parent9d855f50e028f54fce34e1db0d866a6255c5e78f (diff)
remove unneeded semicolons; checked by millert@
Diffstat (limited to 'usr.bin/systat')
-rw-r--r--usr.bin/systat/if.c4
-rw-r--r--usr.bin/systat/main.c4
-rw-r--r--usr.bin/systat/netstat.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/systat/if.c b/usr.bin/systat/if.c
index 66733cff0dc..55166b78bcd 100644
--- a/usr.bin/systat/if.c
+++ b/usr.bin/systat/if.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if.c,v 1.27 2021/11/29 06:39:23 deraadt Exp $ */
+/* $OpenBSD: if.c,v 1.28 2024/09/20 02:00:46 jsg Exp $ */
/*
* Copyright (c) 2004 Markus Friedl <markus@openbsd.org>
*
@@ -488,7 +488,7 @@ if_keyboard_callback(int ch)
break;
default:
return keyboard_callback(ch);
- };
+ }
return 1;
}
diff --git a/usr.bin/systat/main.c b/usr.bin/systat/main.c
index ce7851d8bd2..bdc61bf0ff4 100644
--- a/usr.bin/systat/main.c
+++ b/usr.bin/systat/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.77 2022/12/04 18:01:57 cheloha Exp $ */
+/* $OpenBSD: main.c,v 1.78 2024/09/20 02:00:46 jsg Exp $ */
/*
* Copyright (c) 2001, 2007 Can Erkin Acar
* Copyright (c) 2001 Daniel Hartmeier
@@ -376,7 +376,7 @@ keyboard_callback(int ch)
break;
default:
return 0;
- };
+ }
return 1;
}
diff --git a/usr.bin/systat/netstat.c b/usr.bin/systat/netstat.c
index 5f80827e70d..24864f07d10 100644
--- a/usr.bin/systat/netstat.c
+++ b/usr.bin/systat/netstat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: netstat.c,v 1.46 2023/10/10 09:27:03 tb Exp $ */
+/* $OpenBSD: netstat.c,v 1.47 2024/09/20 02:00:46 jsg Exp $ */
/* $NetBSD: netstat.c,v 1.3 1995/06/18 23:53:07 cgd Exp $ */
/*-
@@ -488,7 +488,7 @@ ns_keyboard_callback(int ch)
break;
default:
return keyboard_callback(ch);
- };
+ }
return 1;
}