diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-08-16 23:35:50 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-08-16 23:35:50 +0100 |
commit | 797ed49118014e8ad121a04b585526734ad6b335 (patch) | |
tree | 7a7592cdeeb04e4c4e45152164789e23163172c2 /src/printf.c | |
parent | fc9dbea5f5e423a12d5c8d7324ef48e7369b675c (diff) | |
download | rspamd-797ed49118014e8ad121a04b585526734ad6b335.tar.gz rspamd-797ed49118014e8ad121a04b585526734ad6b335.zip |
Fix some warnings found by coverity scan.
Diffstat (limited to 'src/printf.c')
-rw-r--r-- | src/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printf.c b/src/printf.c index 02b4ee09d..00730d16c 100644 --- a/src/printf.c +++ b/src/printf.c @@ -28,7 +28,7 @@ /** * From FreeBSD libutil code */ -static const int maxscale = 7; +static const int maxscale = 6; static gchar * rspamd_humanize_number (gchar *buf, gchar *last, gint64 num, gboolean bytes) |