From: José Fonseca Date: Sat, 11 Jun 2011 11:11:12 +0000 (+0100) Subject: Recognize printf format string in OS::DebugMessage. X-Git-Tag: 2.0_alpha^2~781 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eaac53c6818af2a1499db96c9a806c78eafc049b;p=tools%2Fapitrace.git Recognize printf format string in OS::DebugMessage. --- diff --git a/os.hpp b/os.hpp index 0716784..4376c97 100644 --- a/os.hpp +++ b/os.hpp @@ -59,7 +59,11 @@ void ReleaseMutex(void); bool GetProcessName(char *str, size_t size); bool GetCurrentDir(char *str, size_t size); -void DebugMessage(const char *format, ...); +void DebugMessage(const char *format, ...) +#ifdef __GNUC__ + __attribute__ ((format (printf, 1, 2))) +#endif +; #if defined _WIN32 || defined __CYGWIN__ /* We always use .def files on windows for now */