summaryrefslogtreecommitdiff
path: root/usr.bin/aucat
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-11-20 05:12:40 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-11-20 05:12:40 +0000
commitf7aa910a77485f8f205e16933b94680427285272 (patch)
treee304e024e86cd89583e5722bc0aab0b7129979a6 /usr.bin/aucat
parente01c5ca1dcefd9433af746faa62e7ef1ed4a25b8 (diff)
clean up cases of ;;
Diffstat (limited to 'usr.bin/aucat')
-rw-r--r--usr.bin/aucat/midi.c4
-rw-r--r--usr.bin/aucat/wav.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/aucat/midi.c b/usr.bin/aucat/midi.c
index b252cb65bb0..88cd253de7e 100644
--- a/usr.bin/aucat/midi.c
+++ b/usr.bin/aucat/midi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: midi.c,v 1.31 2010/11/14 13:51:27 ratchov Exp $ */
+/* $OpenBSD: midi.c,v 1.32 2010/11/20 05:12:38 deraadt Exp $ */
/*
* Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org>
*
@@ -475,7 +475,7 @@ ctl_qfr(struct aproc *p)
p->u.ctl.fr -= p->u.ctl.fps;
p->u.ctl.sec++;
if (p->u.ctl.sec < 60)
- break;;
+ break;
p->u.ctl.sec = 0;
p->u.ctl.min++;
if (p->u.ctl.min < 60)
diff --git a/usr.bin/aucat/wav.c b/usr.bin/aucat/wav.c
index 4ab6ba9a428..ea035f16149 100644
--- a/usr.bin/aucat/wav.c
+++ b/usr.bin/aucat/wav.c
@@ -873,7 +873,7 @@ rwav_new(struct file *f)
p = aproc_new(&rwav_ops, f->name);
p->u.io.file = f;
- p->u.io.partial = 0;;
+ p->u.io.partial = 0;
f->rproc = p;
return p;
}
@@ -925,7 +925,7 @@ wwav_new(struct file *f)
p = aproc_new(&wwav_ops, f->name);
p->u.io.file = f;
- p->u.io.partial = 0;;
+ p->u.io.partial = 0;
f->wproc = p;
return p;
}