Skip to content

Commit

Permalink
Fix C90 compatibility issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
sideshowbarker committed Apr 10, 2012
1 parent 666d5bb commit 869ab4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/localize.c
Expand Up @@ -1101,8 +1101,8 @@ __attribute__((format(printf, 2, 3)))

void message( TidyDocImpl* doc, TidyReportLevel level, ctmbstr msg, ... )
{
if (level == TidyInfo && !cfgBool(doc, TidyShowInfo)) return;
va_list args;
if (level == TidyInfo && !cfgBool(doc, TidyShowInfo)) return;
va_start( args, msg );
messagePos( doc, level, 0, 0, msg, args );
va_end( args );
Expand Down

0 comments on commit 869ab4a

Please sign in to comment.