libc: Fix incomplete fprintf
Closes #23 Change-Id: Ibe6362de0d2d1d94442401b92bc126e63bf9f9b0
This commit is contained in:
parent
79444d163d
commit
1cd28eb8e4
1 changed files with 2 additions and 1 deletions
|
@ -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, "");
|
||||
|
|
Loading…
Reference in a new issue