]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix format string...
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 21 Sep 2021 11:31:28 +0000 (12:31 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 21 Sep 2021 11:31:28 +0000 (12:31 +0100)
src/libserver/rspamd_control.c

index b16ddf68f1e46c31eb82038cf2736d57cee7d89c..ef17ac24f78c5c9a497f3d70ee729547931d9d47 100644 (file)
@@ -782,7 +782,7 @@ rspamd_control_ignore_io_handler (int fd, short what, void *ud)
 
        /* At this point we just ignore replies from the workers */
        if (read (fd, &rep, sizeof (rep)) == -1) {
-               msg_debug("cannot read %d bytes: %s", sizeof(rep), strerror(errno));
+               msg_debug("cannot read %d bytes: %s", (int)sizeof(rep), strerror(errno));
        }
        rspamd_control_stop_pending (elt);
 }