Make sure all ifs are braced

This commit is contained in:
Alex Young
2012-06-11 14:34:17 +01:00
parent 25fc0969cf
commit 710d8254d4
13 changed files with 119 additions and 104 deletions

View File

@@ -33,8 +33,7 @@ void mylog(int line_level, const char* format, ...)
{
va_list argptr;
if (line_level < log_level)
return;
if (line_level < log_level) { return; }
va_start(argptr, format);
vfprintf(stderr, format, argptr);