Skip to content

Commit

Permalink
fixed for return value
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenni-Foued committed Oct 30, 2020
1 parent 620ab8c commit d0c538d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _printf.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ int _printf(const char *format, ...)
f = printer(format[i + 1]);
if (f != NULL)
{
p_counter = f(arg);
p_counter += f(arg);
i++;
}
else
Expand Down

0 comments on commit d0c538d

Please sign in to comment.