summaryrefslogtreecommitdiffstats
path: root/sys/dev/softraid.c
diff options
context:
space:
mode:
authortodd <todd@openbsd.org>2007-04-30 01:58:36 +0000
committertodd <todd@openbsd.org>2007-04-30 01:58:36 +0000
commit5f5d439f9d87f226f14720a4fc7706173e515669 (patch)
tree7f46e0623fd5c580b63663b6ea3fd72290609055 /sys/dev/softraid.c
parentaggressive spelling fix, spotted by jbg (diff)
downloadwireguard-openbsd-5f5d439f9d87f226f14720a4fc7706173e515669.tar.xz
wireguard-openbsd-5f5d439f9d87f226f14720a4fc7706173e515669.zip
';;' doesnt work on older gcc..
i.e. my sparc and vax and m68k couldn't build this problem found by me, fix by pedro ok marco@
Diffstat (limited to 'sys/dev/softraid.c')
-rw-r--r--sys/dev/softraid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/softraid.c b/sys/dev/softraid.c
index 01459918023..e0059b17275 100644
--- a/sys/dev/softraid.c
+++ b/sys/dev/softraid.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: softraid.c,v 1.36 2007/04/23 22:48:40 marco Exp $ */
+/* $OpenBSD: softraid.c,v 1.37 2007/04/30 01:58:36 todd Exp $ */
/*
* Copyright (c) 2007 Marco Peereboom <marco@peereboom.us>
*
@@ -1852,7 +1852,7 @@ sr_save_metadata(struct sr_discipline *sd)
{
struct sr_softc *sc = sd->sd_sc;
struct sr_metadata *sm = sd->sd_meta;
- struct sr_vol_meta *sv = &sd->sd_vol.sv_meta, *im_sv;;
+ struct sr_vol_meta *sv = &sd->sd_vol.sv_meta, *im_sv;
struct sr_chunk_meta *im_sc;
struct sr_chunk *src;
struct buf b;