Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Feb 2012 16:41:06 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r231024 - head/sys/dev/sound/pci/hda
Message-ID:  <201202051641.q15Gf6vE091586@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201202051641.q15Gf6vE091586>