summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2004-02-15 02:38:38 +0000
committertedu <tedu@openbsd.org>2004-02-15 02:38:38 +0000
commit9b2eb8221429bb309b4f15f3cd4429aa3790a6fa (patch)
tree6c984cd93581f3356d629e5fa1e3553b55af152a
parentpretty code that's easier to read, same effect. (diff)
downloadwireguard-openbsd-9b2eb8221429bb309b4f15f3cd4429aa3790a6fa.tar.xz
wireguard-openbsd-9b2eb8221429bb309b4f15f3cd4429aa3790a6fa.zip
break in default switch cases
-rw-r--r--sys/dev/std/sbp2.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/std/sbp2.c b/sys/dev/std/sbp2.c
index 71b4e636e60..b32cc275c04 100644
--- a/sys/dev/std/sbp2.c
+++ b/sys/dev/std/sbp2.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sbp2.c,v 1.4 2003/01/08 06:33:38 tdeval Exp $ */
+/* $OpenBSD: sbp2.c,v 1.5 2004/02/15 02:38:38 tedu Exp $ */
/*
* Copyright (c) 2002 Thierry Deval. All rights reserved.
@@ -271,6 +271,7 @@ sbp2_print_data(struct p1212_data *data)
DPRINTF(("SBP2 Management Agent: 0x%08x\n", key->val));
break;
default:
+ break;
}
}
@@ -284,6 +285,7 @@ sbp2_print_dir(struct p1212_dir *dir)
DPRINTF(("Logical Unit "));
break;
default:
+ break;
}
}