Skip to content

Commit

Permalink
#256 Corrected missing curly braces
Browse files Browse the repository at this point in the history
  • Loading branch information
krichardsson committed Jan 29, 2018
1 parent c604f2e commit 26a78f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/utils/src/eprintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,10 @@ int evprintf(putc_t putcf, char * fmt, va_list ap)
{
fmt++;
if (isdigit((unsigned)*fmt))
{
precision = *fmt - '0';
fmt++;
}
}
}
switch (*fmt++)
Expand Down

0 comments on commit 26a78f8

Please sign in to comment.