Skip to content

Commit 8d1bc50

Browse files
author
Sebastien Bourdeauducq
committedMay 28, 2012
software/libbase/vsnprintf: treat %g as %f (temporary hack)
1 parent e982571 commit 8d1bc50

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎software/libbase/vsnprintf.c

+1
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
192192
16, field_width, precision, flags);
193193
continue;
194194

195+
case 'g':
195196
case 'f': {
196197
int m;
197198
double f;

0 commit comments

Comments
 (0)
Please sign in to comment.