tidying
authorJeremy Harris <jgh146exb@wizmail.org>
Sun, 10 Oct 2021 10:36:56 +0000 (11:36 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Sun, 10 Oct 2021 10:36:56 +0000 (11:36 +0100)
src/OS/os.h-FreeBSD
src/src/exim.c
src/src/expand.c

index 9220c31f7efa3694538100bc1f56ee35fc66821e..36a6d71159ead5bf47edfd13268c9106c77d7bd5 100644 (file)
@@ -58,6 +58,11 @@ performance on outgoing mail a bit. */
 #define OS_SENDFILE
 extern ssize_t os_sendfile(int, int, off_t *, size_t);
 
+#ifdef PID_T_FMT
+# undef PID_T_FMT
+#endif
+#define PID_T_FMT "%d"
+
 
 /*******************/
 
index 833045018cb352c20f65196420e894135c9ffb7e..6e97981b06935698cabcfcb61c67031d97065393 100644 (file)
@@ -122,7 +122,7 @@ if (!(yield = pcre2_compile((PCRE2_SPTR)pattern, PCRE2_ZERO_TERMINATED, options,
   uschar errbuf[128];
   pcre2_get_error_message(err, errbuf, sizeof(errbuf));
   log_write(0, LOG_MAIN|LOG_PANIC_DIE, "regular expression error: "
-    "%s at offset %d while compiling %s", errbuf, (long)offset, pattern);
+    "%s at offset %ld while compiling %s", errbuf, (long)offset, pattern);
   }
 
 if (use_malloc)
index 3d48301a131020b029ed17f476f830a19fb00b86..41016c316960661bc089893796889807003f3548 100644 (file)
@@ -2982,7 +2982,7 @@ switch(cond_type = identify_operator(&s, &opname))
        uschar errbuf[128];
        pcre2_get_error_message(err, errbuf, sizeof(errbuf));
        expand_string_message = string_sprintf("regular expression error in "
-         "\"%s\": %s at offset %d", sub[1], errbuf, offset);
+         "\"%s\": %s at offset %ld", sub[1], errbuf, (long)offset);
        return NULL;
        }