From 4a9f92f2830b4226415d7ca34c0b63ea38b326b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Fri, 20 Apr 2012 15:13:52 +0200 Subject: [PATCH] build: update pid_t type static check The code uses long long for pid_t now. It fails on mingw64 without this change. (cherry picked from commit d08c28f65faf85804fe7a7295a1694bdb0d225c3) --- src/util/virpidfile.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/util/virpidfile.c b/src/util/virpidfile.c index 59d0c94033..d6235d2df9 100644 --- a/src/util/virpidfile.c +++ b/src/util/virpidfile.c @@ -316,9 +316,6 @@ cleanup: return rc; } - -verify(sizeof(pid_t) <= sizeof(unsigned int)); - int virPidFileAcquirePath(const char *path, pid_t pid) { -- GitLab