Skip to content

Commit

Permalink
software/libbase/vsnprintf: treat %g as %f (temporary hack)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Bourdeauducq committed May 28, 2012
1 parent e982571 commit 8d1bc50
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions software/libbase/vsnprintf.c
Expand Up @@ -192,6 +192,7 @@ int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
16, field_width, precision, flags);
continue;

case 'g':
case 'f': {
int m;
double f;
Expand Down

0 comments on commit 8d1bc50

Please sign in to comment.