mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
software/libbase/vsnprintf: treat %g as %f (temporary hack)
This commit is contained in:
parent
e982571953
commit
8d1bc50120
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue