summaryrefslogtreecommitdiff
path: root/bin/ps/print.c
diff options
context:
space:
mode:
authorMoritz Jodeit <moritz@cvs.openbsd.org>2006-03-10 11:31:42 +0000
committerMoritz Jodeit <moritz@cvs.openbsd.org>2006-03-10 11:31:42 +0000
commita7de11cae61794e801e0976e32c898e36dd217fa (patch)
treeb79dce354cc2b626b16f40fa1d6af01ea917d40a /bin/ps/print.c
parentd4f8111ef84663610f451f31d4d87b0d1656c7a1 (diff)
add missing break; found by lint
ok deraadt@
Diffstat (limited to 'bin/ps/print.c')
-rw-r--r--bin/ps/print.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/ps/print.c b/bin/ps/print.c
index bb56e9d955c..50578a8cf21 100644
--- a/bin/ps/print.c
+++ b/bin/ps/print.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: print.c,v 1.39 2006/03/10 06:32:00 deraadt Exp $ */
+/* $OpenBSD: print.c,v 1.40 2006/03/10 11:31:41 moritz Exp $ */
/* $NetBSD: print.c,v 1.27 1995/09/29 21:58:12 cgd Exp $ */
/*-
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)print.c 8.6 (Berkeley) 4/16/94";
#else
-static char rcsid[] = "$OpenBSD: print.c,v 1.39 2006/03/10 06:32:00 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: print.c,v 1.40 2006/03/10 11:31:41 moritz Exp $";
#endif
#endif /* not lint */
@@ -674,6 +674,7 @@ printval(char *bp, VAR *v)
break;
case INT64:
(void)printf(ofmt, v->width, GET(int64_t));
+ break;
case UINT64:
(void)printf(ofmt, v->width, CHK_INF127(GET(u_int64_t)));
break;