]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fixed a declaration: function attributes must be inserted after the return type inste...
authorBart Van Assche <bvanassche@acm.org>
Sun, 23 Aug 2009 11:11:36 +0000 (11:11 +0000)
committerBart Van Assche <bvanassche@acm.org>
Sun, 23 Aug 2009 11:11:36 +0000 (11:11 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10861

coregrind/pub_core_debuglog.h

index 489aa0c0332f037ad9a76fe32adfb56262dae28f..6bf779a381acc6f82fba108b7888bbbe5b9ae72b 100644 (file)
@@ -69,9 +69,9 @@ Int VG_(debugLog_getLevel) ( void );
 /* Send debugging output.  Nothing happens unless 'level' 
    does not exceed the logging threshold level. */
 extern
-__attribute__((format(__printf__, 3, 4)))
 void VG_(debugLog) ( Int level, const HChar* modulename,
-                                const HChar* format, ... );
+                                const HChar* format, ... )
+     __attribute__((format(__printf__, 3, 4)));
 
 
 /* A simple vprintf().  For each emitted byte, (*send_fn) is called with