Module Name:    src
Committed By:   pgoyette
Date:           Fri Jun 10 07:50:15 UTC 2016

Modified Files:
        src/sys/arch/x86/x86: efi.c

Log Message:
Add missing \n (I triggered the systbl message on a qemu virtual machine!)


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/x86/x86/efi.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/arch/x86/x86/efi.c
diff -u src/sys/arch/x86/x86/efi.c:1.2 src/sys/arch/x86/x86/efi.c:1.3
--- src/sys/arch/x86/x86/efi.c:1.2	Fri Jan 29 02:40:22 2016
+++ src/sys/arch/x86/x86/efi.c	Fri Jun 10 07:50:15 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: efi.c,v 1.2 2016/01/29 02:40:22 christos Exp $	*/
+/*	$NetBSD: efi.c,v 1.3 2016/06/10 07:50:15 pgoyette Exp $	*/
 /*-
  * Copyright (c) 2016 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -25,7 +25,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: efi.c,v 1.2 2016/01/29 02:40:22 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: efi.c,v 1.3 2016/06/10 07:50:15 pgoyette Exp $");
 #include <sys/kmem.h>
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -275,11 +275,11 @@ bool
 efi_probe(void)
 {
 	if (efi_getsystbl() == 0) {
-		aprint_debug("efi: missing or invalid systbl");
+		aprint_debug("efi: missing or invalid systbl\n");
 		return false;
 	}
 	if (efi_getcfgtblhead() == 0) {
-		aprint_debug("efi: missing or invalid cfgtbl");
+		aprint_debug("efi: missing or invalid cfgtbl\n");
 		efi_relva((vaddr_t) efi_systbl_va);
 		return false;
 	}

Reply via email to