Commit 0991954c authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

winedbg: Fix the check for GCC version number around db_printf format checking.

parent 9941f846
......@@ -32,7 +32,7 @@
#include <stdio.h>
#include "debugger.h"
#if defined(__GNUC__) && (GCC_VERSION >= 30000)
#if defined(__GNUC__) && (__GNUC__ >= 3)
static int (*db_printf)(const char* format, ...) __attribute__((format (printf,1,2)));
#else
static int (*db_printf)(const char* format, ...);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment