Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/kern Remove extraneous ')' from previous.
details: https://anonhg.NetBSD.org/src/rev/b7fa539e9854
branches: trunk
changeset: 341377:b7fa539e9854
user: pgoyette <pgoyette%NetBSD.org@localhost>
date: Tue Nov 03 03:33:43 2015 +0000
description:
Remove extraneous ')' from previous.
diffstat:
sys/kern/kern_module.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r d86db150ce1e -r b7fa539e9854 sys/kern/kern_module.c
--- a/sys/kern/kern_module.c Tue Nov 03 03:01:35 2015 +0000
+++ b/sys/kern/kern_module.c Tue Nov 03 03:33:43 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_module.c,v 1.107 2015/11/03 02:04:12 pgoyette Exp $ */
+/* $NetBSD: kern_module.c,v 1.108 2015/11/03 03:33:43 pgoyette Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_module.c,v 1.107 2015/11/03 02:04:12 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_module.c,v 1.108 2015/11/03 03:33:43 pgoyette Exp $");
#define _MODULE_INTERNAL
@@ -1195,7 +1195,7 @@
}
if (mod->mod_refcnt != 0) {
module_print("module `%s' busy (%d refs)", name,
- mod->mod_refcnt));
+ mod->mod_refcnt);
return EBUSY;
}
Home |
Main Index |
Thread Index |
Old Index