chiark / gitweb /
Fix misuse of uint64_t as size_t
[elogind.git] / src / journal / journald-native.c
index d73280c8cfe4b9bb418663dca6c5c271a5937882..6bc5df725e504357363fe5a2c21a7b7c39c7289a 100644 (file)
@@ -223,7 +223,7 @@ void server_process_native_message(
                         l = le64toh(l_le);
 
                         if (l > DATA_SIZE_MAX) {
-                                log_debug("Received binary data block of %zu bytes is too large, ignoring.", l);
+                                log_debug("Received binary data block of %"PRIu64" bytes is too large, ignoring.", l);
                                 break;
                         }