mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
virtlogd: use %llu to print 64bit types
Otherwise we fail on 32bit with: CC logging/virtlogd-log_daemon_dispatch.o logging/log_daemon_dispatch.c: In function 'virLogManagerProtocolDispatchDomainReadLogFile': logging/log_daemon_dispatch.c:120:9: error: format '%zu' expects argument of type 'size_t', but argument 7 has type 'uint64_t' [-Werror=format]
This commit is contained in:
parent
c32d977e0f
commit
35b2a2d99a
@ -118,8 +118,9 @@ virLogManagerProtocolDispatchDomainReadLogFile(virNetServerPtr server ATTRIBUTE_
|
||||
|
||||
if (args->maxlen > VIR_LOG_MANAGER_PROTOCOL_STRING_MAX) {
|
||||
virReportError(VIR_ERR_INTERNAL_ERROR,
|
||||
_("Requested data len %zu is larger than maximum %d"),
|
||||
args->maxlen, VIR_LOG_MANAGER_PROTOCOL_STRING_MAX);
|
||||
_("Requested data len %llu is larger than maximum %d"),
|
||||
(unsigned long long)args->maxlen,
|
||||
VIR_LOG_MANAGER_PROTOCOL_STRING_MAX);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
@ -57,8 +57,9 @@ static int testRotatingFileWriterAssertOneFileSize(const char *filename,
|
||||
fprintf(stderr, "File %s should not exist\n", filename);
|
||||
return -1;
|
||||
} else if (sb.st_size != size) {
|
||||
fprintf(stderr, "File %s should be %zu bytes not %zu\n",
|
||||
filename, size, sb.st_size);
|
||||
fprintf(stderr, "File %s should be %llu bytes not %llu\n",
|
||||
filename, (unsigned long long)size,
|
||||
(unsigned long long)sb.st_size);
|
||||
return -1;
|
||||
} else {
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user