svn commit: r231024 - head/sys/dev/sound/pci/hda
Alexander Motin
mav at FreeBSD.org
Sun Feb 5 16:41:07 UTC 2012
Author: mav
Date: Sun Feb 5 16:41:06 2012
New Revision: 231024
URL: http://svn.freebsd.org/changeset/base/231024
Log:
Remove extra semicolon.
Submitted by: emaste
Modified:
head/sys/dev/sound/pci/hda/hdacc.c
Modified: head/sys/dev/sound/pci/hda/hdacc.c
==============================================================================
--- head/sys/dev/sound/pci/hda/hdacc.c Sun Feb 5 16:23:55 2012 (r231023)
+++ head/sys/dev/sound/pci/hda/hdacc.c Sun Feb 5 16:41:06 2012 (r231024)
@@ -612,7 +612,7 @@ hdacc_stream_intr(device_t dev, int dir,
struct hdacc_softc *codec = device_get_softc(dev);
device_t child;
- if ((child = codec->streams[dir][stream]) != NULL);
+ if ((child = codec->streams[dir][stream]) != NULL)
HDAC_STREAM_INTR(child, dir, stream);
}
More information about the svn-src-head
mailing list