Module Name:    src
Committed By:   ryoon
Date:           Sat May  5 21:16:31 UTC 2018

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

Log Message:
Insert a whitespace after comma


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/sys/dev/acpi/com_acpi.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/com_acpi.c
diff -u src/sys/dev/acpi/com_acpi.c:1.34 src/sys/dev/acpi/com_acpi.c:1.35
--- src/sys/dev/acpi/com_acpi.c:1.34	Wed Mar 29 20:08:40 2017
+++ src/sys/dev/acpi/com_acpi.c	Sat May  5 21:16:31 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: com_acpi.c,v 1.34 2017/03/29 20:08:40 jdolecek Exp $ */
+/* $NetBSD: com_acpi.c,v 1.35 2018/05/05 21:16:31 ryoon Exp $ */
 
 /*
  * Copyright (c) 2002 Jared D. McNeill <jmcne...@invisible.ca>
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: com_acpi.c,v 1.34 2017/03/29 20:08:40 jdolecek Exp $");
+__KERNEL_RCSID(0, "$NetBSD: com_acpi.c,v 1.35 2018/05/05 21:16:31 ryoon Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -77,7 +77,7 @@ com_acpi_match(device_t parent, cfdata_t
 	if (aa->aa_node->ad_type != ACPI_TYPE_DEVICE)
 		return 0;
 
-	return acpi_match_hid(aa->aa_node->ad_devinfo,com_acpi_ids);
+	return acpi_match_hid(aa->aa_node->ad_devinfo, com_acpi_ids);
 }
 
 /*

Reply via email to