Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/ic PR/50948: David Binderman: Fix misplaced parens
details: https://anonhg.NetBSD.org/src/rev/035fd6800cad
branches: trunk
changeset: 344055:035fd6800cad
user: christos <christos%NetBSD.org@localhost>
date: Fri Mar 11 18:33:18 2016 +0000
description:
PR/50948: David Binderman: Fix misplaced parens
diffstat:
sys/dev/ic/malo.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r c209e540b252 -r 035fd6800cad sys/dev/ic/malo.c
--- a/sys/dev/ic/malo.c Fri Mar 11 18:32:29 2016 +0000
+++ b/sys/dev/ic/malo.c Fri Mar 11 18:33:18 2016 +0000
@@ -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 @@
/* 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;
}
Home |
Main Index |
Thread Index |
Old Index