From 5f77562333d50d8e31f4f82f21854d3395d4a2fc Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Thu, 10 Nov 2005 04:29:51 +0000 Subject: [PATCH] Cleanup. committer: mfx 1131596991 +0000 --- src/conf.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/conf.h b/src/conf.h index 9600febf..646ce5b2 100644 --- a/src/conf.h +++ b/src/conf.h @@ -503,9 +503,9 @@ void printErr(const char *iname, const Throwable *e); void printUnhandledException(const char *iname, const std::exception *e); #if defined(__GNUC__) void __acc_cdecl_va printErr(const char *iname, const char *format, ...) - __attribute__((__format__(printf,2,3))); + __attribute__((__format__(__printf__,2,3))); void __acc_cdecl_va printWarn(const char *iname, const char *format, ...) - __attribute__((__format__(printf,2,3))); + __attribute__((__format__(__printf__,2,3))); #else void __acc_cdecl_va printErr(const char *iname, const char *format, ...); void __acc_cdecl_va printWarn(const char *iname, const char *format, ...); @@ -513,11 +513,11 @@ void __acc_cdecl_va printWarn(const char *iname, const char *format, ...); #if defined(__GNUC__) void __acc_cdecl_va infoWarning(const char *format, ...) - __attribute__((__format__(printf,1,2))); + __attribute__((__format__(__printf__,1,2))); void __acc_cdecl_va infoHeader(const char *format, ...) - __attribute__((__format__(printf,1,2))); + __attribute__((__format__(__printf__,1,2))); void __acc_cdecl_va info(const char *format, ...) - __attribute__((__format__(printf,1,2))); + __attribute__((__format__(__printf__,1,2))); #else void __acc_cdecl_va infoWarning(const char *format, ...); void __acc_cdecl_va infoHeader(const char *format, ...);