From 59691939f93130491768297080773d91aaa3a3d0 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii 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 de4f79e..aacfb84 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.3