Skip to content

Commit

Permalink
Added additional error hint to format error ourput.
Browse files Browse the repository at this point in the history
  • Loading branch information
allinurl committed Oct 6, 2016
1 parent f4c0276 commit b2c1dce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -1378,9 +1378,9 @@ output_logerrors (GLog * glog)
if (!glog->log_erridx)
return;

for (i = 0; i < glog->log_erridx; ++i) {
for (i = 0; i < glog->log_erridx; ++i)
LOG (("%s\n", glog->errors[i]));
}
LOG (("\n%s\n", ERR_HEADER));
}

/* Free all log errors stored during parsing. */
Expand Down

0 comments on commit b2c1dce

Please sign in to comment.