libc: Fix incomplete fprintf

Closes #23

Change-Id: Ibe6362de0d2d1d94442401b92bc126e63bf9f9b0
This commit is contained in:
Jacob Adams 2015-03-30 15:53:59 -04:00 committed by Lionel Sambuc
parent 79444d163d
commit 1cd28eb8e4

View file

@ -534,7 +534,8 @@ static void print_list(int indent, config_t *cfg)
{
while (cfg != nil) {
if (!config_issub(cfg)) {
fprintf(stderr, "Cell at \"%s\", line %u is not a sublist\n");
fprintf(stderr, "Cell at \"%s\", line %u is not a sublist\n",
c_file, c_line);
break;
}
printf("%*s", indent, "");