From 16ddb3f64d57c89c479ff2d847d54e00f48ceee6 Mon Sep 17 00:00:00 2001 From: eliz <> Date: Sat, 24 Jul 2010 08:27:50 +0000 Subject: job.c --- job.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/job.c b/job.c index de4f79e0..aacfb844 100644 --- a/job.c +++ b/job.c @@ -192,7 +192,9 @@ static const char * pid2str (pid_t pid) { static char pidstring[100]; -#ifdef WINDOWS32 +#if defined(WINDOWS32) && (__GNUC__ > 3 || _MSC_VER > 1300) + /* %Id is only needed for 64-builds, which were not supported by + older versions of Windows compilers. */ sprintf (pidstring, "%Id", pid); #else sprintf (pidstring, "%lu", (unsigned long) pid); -- cgit v1.2.1