From a4aab6c47e94a87d746a72993d1fde5fd413024f Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Wed, 17 Apr 2002 23:36:34 +0000
Subject: [PATCH] Fixed gcc printf format warning.

---
 src/xpdev/wraptest.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xpdev/wraptest.c b/src/xpdev/wraptest.c
index 1d0d76d08c..5d9679f9ef 100644
--- a/src/xpdev/wraptest.c
+++ b/src/xpdev/wraptest.c
@@ -72,7 +72,7 @@ int main()
 	printf("sleeping... ");
 	fflush(stdout);
 	SLEEP(5000);
-	printf("slept %d seconds\n",time(NULL)-t);
+	printf("slept %ld seconds\n",time(NULL)-t);
 
 	/* glob test */
 	printf("\nglob(%s) test\n",glob_pattern);
-- 
GitLab