From fe4fd6b59e71180300c388f4fe4d59e28ad590f7 Mon Sep 17 00:00:00 2001 From: "cantab.net!aia21" Date: Thu, 9 Sep 2004 14:27:59 +0000 Subject: [PATCH] Fix silly porting typo. (Logical change 1.542) --- include/ntfs/debug.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/ntfs/debug.h b/include/ntfs/debug.h index 1652ba62..b8615571 100644 --- a/include/ntfs/debug.h +++ b/include/ntfs/debug.h @@ -31,6 +31,7 @@ #ifdef HAVE_STDARG_H # include #endif +#include #include struct _runlist_element; @@ -49,7 +50,7 @@ extern void __ntfs_debug (const char *file, int line, const char *function, __ntfs_debug(__FILE__, __LINE__, __FUNCTION__, f, ##a) extern void __ntfs_error(const char *function, - const char *fmt, ...) __attribute__((format(printf, 3, 4))); + const char *fmt, ...) __attribute__((format(printf, 2, 3))); #define ntfs_error(sb, f, a...) __ntfs_error(__FUNCTION__, f, ##a) extern void __Dprintf(const char *fmt, ...)