diff options
author | 2006-03-12 10:34:50 +0000 | |
---|---|---|
committer | 2006-03-12 10:34:50 +0000 | |
commit | dcfd34e9963b51bdefff563f13053e53e295468b (patch) | |
tree | 34855117cbf65150bcb36a6484b41435570f4e57 /sys/dev/audio.c | |
parent | document new attach args for devices (diff) | |
download | wireguard-openbsd-dcfd34e9963b51bdefff563f13053e53e295468b.tar.xz wireguard-openbsd-dcfd34e9963b51bdefff563f13053e53e295468b.zip |
explicitly initialize a couple variables
OK brad@
Diffstat (limited to 'sys/dev/audio.c')
-rw-r--r-- | sys/dev/audio.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/audio.c b/sys/dev/audio.c index 4854c58c150..7ceb6743ca7 100644 --- a/sys/dev/audio.c +++ b/sys/dev/audio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: audio.c,v 1.48 2006/01/02 05:21:37 brad Exp $ */ +/* $OpenBSD: audio.c,v 1.49 2006/03/12 10:34:50 jakemsr Exp $ */ /* $NetBSD: audio.c,v 1.119 1999/11/09 16:50:47 augustss Exp $ */ /* @@ -849,7 +849,9 @@ audio_init_ringbuffer(rp) rp->end = rp->start + nblks * blksize; rp->inp = rp->outp = rp->start; rp->stamp = 0; + rp->stamp_last = 0; rp->drops = 0; + rp->pdrops = 0; rp->pause = 0; rp->copying = 0; rp->needfill = 0; |