Module Name: src
Committed By: joerg
Date: Sun Apr 6 18:48:06 UTC 2014
Modified Files:
src/sys/arch/x86/include: loadfile_machdep.h
Log Message:
x86_progress takes a format string.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/x86/include/loadfile_machdep.h
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/include/loadfile_machdep.h
diff -u src/sys/arch/x86/include/loadfile_machdep.h:1.4 src/sys/arch/x86/include/loadfile_machdep.h:1.5
--- src/sys/arch/x86/include/loadfile_machdep.h:1.4 Sat Mar 21 15:01:56 2009
+++ src/sys/arch/x86/include/loadfile_machdep.h Sun Apr 6 18:48:06 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: loadfile_machdep.h,v 1.4 2009/03/21 15:01:56 ad Exp $ */
+/* $NetBSD: loadfile_machdep.h,v 1.5 2014/04/06 18:48:06 joerg Exp $ */
/*-
* Copyright (c) 1998, 2007, 2009 The NetBSD Foundation, Inc.
@@ -50,7 +50,7 @@
#define DEALLOC(a, b) dealloc(a, b)
#define OKMAGIC(a) ((a) == ZMAGIC)
-void x86_progress(const char *, ...);
+void x86_progress(const char *, ...) __printflike(1, 2);
void vpbcopy(const void *, void *, size_t);
void pbzero(void *, size_t);
ssize_t pread(int, void *, size_t);