Module Name:    src
Committed By:   pgoyette
Date:           Tue Nov  3 03:33:43 UTC 2015

Modified Files:
        src/sys/kern: kern_module.c

Log Message:
Remove extraneous ')' from previous.


To generate a diff of this commit:
cvs rdiff -u -r1.107 -r1.108 src/sys/kern/kern_module.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/kern/kern_module.c
diff -u src/sys/kern/kern_module.c:1.107 src/sys/kern/kern_module.c:1.108
--- src/sys/kern/kern_module.c:1.107	Tue Nov  3 02:04:12 2015
+++ src/sys/kern/kern_module.c	Tue Nov  3 03:33:43 2015
@@ -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 @@ module_do_unload(const char *name, bool 
 	}
 	if (mod->mod_refcnt != 0) {
 		module_print("module `%s' busy (%d refs)", name,
-		    mod->mod_refcnt));
+		    mod->mod_refcnt);
 		return EBUSY;
 	}
 

Reply via email to