software/libbase/vsnprintf: treat %g as %f (temporary hack)

This commit is contained in:
Sebastien Bourdeauducq 2012-05-28 21:18:25 +02:00
parent e982571953
commit 8d1bc50120
1 changed files with 1 additions and 0 deletions

View File

@ -192,6 +192,7 @@ int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
16, field_width, precision, flags); 16, field_width, precision, flags);
continue; continue;
case 'g':
case 'f': { case 'f': {
int m; int m;
double f; double f;