From: Marc-André Lureau Date: Fri, 20 Apr 2012 13:13:52 +0000 (+0200) Subject: build: update pid_t type static check X-Git-Tag: v0.9.12-rc1~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d08c28f65faf85804fe7a7295a1694bdb0d225c3;p=thirdparty%2Flibvirt.git build: update pid_t type static check The code uses long long for pid_t now. It fails on mingw64 without this change. --- 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) {