]> source.dussan.org Git - rspamd.git/commitdiff
Fix tv_to_msec macro priority.
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 3 Nov 2014 10:54:44 +0000 (10:54 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 3 Nov 2014 10:54:44 +0000 (10:54 +0000)
src/libutil/util.h

index ed4e6fccab48bca582a77003e76368fcaecad960..e7a9f520a2a8c51eaf6f91514f5eb3d01ec58d5f 100644 (file)
@@ -243,7 +243,7 @@ gsize rspamd_strlcpy_tolower (gchar *dst, const gchar *src, gsize siz);
 #define double_to_tv(dbl, tv) do { (tv)->tv_sec = (int)(dbl); (tv)->tv_usec = \
                                                                           ((dbl) - (int)(dbl)) * 1000 * 1000; \
 } while (0)
-#define tv_to_msec(tv) (tv)->tv_sec * 1000LLU + (tv)->tv_usec / 1000LLU
+#define tv_to_msec(tv) ((tv)->tv_sec * 1000LLU + (tv)->tv_usec / 1000LLU)
 
 /* Compare two emails for building emails tree */
 gint compare_email_func (gconstpointer a, gconstpointer b);