mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-25 13:55:34 -05:00
[Theme] small change in formatting code.
This commit is contained in:
parent
a97fa4a199
commit
597157e0c9
1 changed files with 4 additions and 2 deletions
|
@ -251,8 +251,10 @@ void rofi_theme_free(ThemeWidget *widget) {
|
||||||
* print
|
* print
|
||||||
*/
|
*/
|
||||||
inline static void printf_double(double d) {
|
inline static void printf_double(double d) {
|
||||||
char buf[G_ASCII_DTOSTR_BUF_SIZE];
|
char buf[G_ASCII_DTOSTR_BUF_SIZE + 1] = {
|
||||||
g_ascii_formatd(buf, G_ASCII_DTOSTR_BUF_SIZE, "%.4lf", d);
|
0,
|
||||||
|
};
|
||||||
|
g_ascii_dtostr(buf, G_ASCII_DTOSTR_BUF_SIZE, d);
|
||||||
fputs(buf, stdout);
|
fputs(buf, stdout);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue