Module Name:    src
Committed By:   jruoho
Date:           Thu Mar  4 23:06:36 UTC 2010

Modified Files:
        src/sys/dev/acpi: acpi_button.c

Log Message:
Add missing semicolon.


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/sys/dev/acpi/acpi_button.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/acpi/acpi_button.c
diff -u src/sys/dev/acpi/acpi_button.c:1.32 src/sys/dev/acpi/acpi_button.c:1.33
--- src/sys/dev/acpi/acpi_button.c:1.32	Thu Mar  4 22:29:47 2010
+++ src/sys/dev/acpi/acpi_button.c	Thu Mar  4 23:06:36 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: acpi_button.c,v 1.32 2010/03/04 22:29:47 jruoho Exp $	*/
+/*	$NetBSD: acpi_button.c,v 1.33 2010/03/04 23:06:36 jruoho Exp $	*/
 
 /*
  * Copyright 2001, 2003 Wasabi Systems, Inc.
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: acpi_button.c,v 1.32 2010/03/04 22:29:47 jruoho Exp $");
+__KERNEL_RCSID(0, "$NetBSD: acpi_button.c,v 1.33 2010/03/04 23:06:36 jruoho Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -130,7 +130,7 @@
 
 	sc->sc_node = aa->aa_node;
 
-	(void)pmf_device_register(self, NULL, NULL)
+	(void)pmf_device_register(self, NULL, NULL);
 	(void)sysmon_pswitch_register(&sc->sc_smpsw);
 
 	rv = AcpiInstallNotifyHandler(sc->sc_node->ad_handle,

Reply via email to