1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2024-12-26 03:21:44 +03:00

util: Print pid_t as long long

After commit f2bf5fbb04, MinGW strikes again.  Simply print pid as any
other place after commit b7d2d4af2b.

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
Martin Kletzander 2016-11-20 21:46:21 +01:00
parent 112b095944
commit 8158a19fd7

View File

@ -1228,7 +1228,8 @@ virProcessSetScheduler(pid_t pid,
struct sched_param param = {0};
int pol = virProcessSchedTranslatePolicy(policy);
VIR_DEBUG("pid=%d, policy=%d, priority=%u", pid, policy, priority);
VIR_DEBUG("pid=%lld, policy=%d, priority=%u",
(long long) pid, policy, priority);
if (!policy)
return 0;
@ -1270,8 +1271,8 @@ virProcessSetScheduler(pid_t pid,
if (sched_setscheduler(pid, pol, &param) < 0) {
virReportSystemError(errno,
_("Cannot set scheduler parameters for pid %d"),
pid);
_("Cannot set scheduler parameters for pid %lld"),
(long long) pid);
return -1;
}