Module Name: src
Committed By: plunky
Date: Thu May 29 19:08:30 UTC 2014
Modified Files:
src/sys/arch/x86/x86: mtrr_i686.c
Log Message:
\%s is not an escape sequence, and we want %s
To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/sys/arch/x86/x86/mtrr_i686.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/mtrr_i686.c
diff -u src/sys/arch/x86/x86/mtrr_i686.c:1.27 src/sys/arch/x86/x86/mtrr_i686.c:1.28
--- src/sys/arch/x86/x86/mtrr_i686.c:1.27 Sun Apr 22 18:59:41 2012
+++ src/sys/arch/x86/x86/mtrr_i686.c Thu May 29 19:08:30 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: mtrr_i686.c,v 1.27 2012/04/22 18:59:41 rmind Exp $ */
+/* $NetBSD: mtrr_i686.c,v 1.28 2014/05/29 19:08:30 plunky Exp $ */
/*-
* Copyright (c) 2000, 2011 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mtrr_i686.c,v 1.27 2012/04/22 18:59:41 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mtrr_i686.c,v 1.28 2014/05/29 19:08:30 plunky Exp $");
#include "opt_multiprocessor.h"
@@ -311,7 +311,7 @@ i686_mtrr_init_first(void)
i686_mtrr_vcnt = i686_mtrr_cap & MTRR_I686_CAP_VCNT_MASK;
if (i686_mtrr_vcnt > MTRR_I686_NVAR_MAX)
- printf("\%s: FIXME: more than %d MTRRs (%d)\n", __FILE__,
+ printf("%s: FIXME: more than %d MTRRs (%d)\n", __FILE__,
MTRR_I686_NVAR_MAX, i686_mtrr_vcnt);
else if (i686_mtrr_vcnt < MTRR_I686_NVAR_MAX) {
for (i = MTRR_I686_NVAR_MAX - i686_mtrr_vcnt; i; i--) {