Module Name:    src
Committed By:   christos
Date:           Fri Mar 11 18:33:18 UTC 2016

Modified Files:
        src/sys/dev/ic: malo.c

Log Message:
PR/50948: David Binderman: Fix misplaced parens


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/ic/malo.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/ic/malo.c
diff -u src/sys/dev/ic/malo.c:1.3 src/sys/dev/ic/malo.c:1.4
--- src/sys/dev/ic/malo.c:1.3	Sun Aug  5 05:16:54 2012
+++ src/sys/dev/ic/malo.c	Fri Mar 11 13:33:18 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: malo.c,v 1.3 2012/08/05 09:16:54 degroote Exp $ */
+/*	$NetBSD: malo.c,v 1.4 2016/03/11 18:33:18 christos Exp $ */
 /*	$OpenBSD: malo.c,v 1.92 2010/08/27 17:08:00 jsg Exp $ */
 
 /*
@@ -19,7 +19,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: malo.c,v 1.3 2012/08/05 09:16:54 degroote Exp $");
+__KERNEL_RCSID(0, "$NetBSD: malo.c,v 1.4 2016/03/11 18:33:18 christos Exp $");
 
 #include <sys/param.h>
 #include <sys/types.h>
@@ -1623,7 +1623,7 @@ malo_get_firmware(struct malo_softc *sc,
 
 
 	/* load firmware image from disk */
-	if ((error = firmware_open("malo", name, &fw) != 0)) {
+	if ((error = firmware_open("malo", name, &fw)) != 0) {
 		aprint_error_dev(sc->sc_dev, "could not read firmware file\n");
 		return error;
 	}

Reply via email to