]> git.gsnw.org Git - fping.git/commitdiff
Fixing build warning long int on seqmap.c line 84
authorGerman Service Network <support@gsnw.de>
Sun, 24 Jul 2022 08:54:38 +0000 (10:54 +0200)
committerDavid Schweikert <david@schweikert.ch>
Sun, 27 Aug 2023 09:02:47 +0000 (11:02 +0200)
src/seqmap.c

index a1ecdef7c9425a6eaa6aed63c353cd944689c12a..4a4e38a0a5277e918166053f9293516eeda7a1f8 100644 (file)
@@ -41,6 +41,7 @@
 #include "options.h"
 #include "fping.h"
 
+#include <inttypes.h>
 #include <stdio.h>
 #include <stdlib.h>
 
@@ -81,7 +82,7 @@ unsigned int seqmap_add(unsigned int host_nr, unsigned int ping_count, int64_t t
      * 0, so will be seen as expired */
     next_value = &seqmap_map[seqmap_next_id];
     if (timestamp - next_value->ping_ts < SEQMAP_TIMEOUT_IN_NS) {
-        fprintf(stderr, "fping error: not enough sequence numbers available! (expire_timeout=%ld, host_nr=%d, ping_count=%d, seqmap_next_id=%d)\n",
+        fprintf(stderr, "fping error: not enough sequence numbers available! (expire_timeout=%" PRId64 ", host_nr=%d, ping_count=%d, seqmap_next_id=%d)\n",
             SEQMAP_TIMEOUT_IN_NS, host_nr, ping_count, seqmap_next_id);
         exit(4);
     }