svn commit: trunk/uClibc/test/pthread

vapier at uclibc.org vapier at uclibc.org
Tue Feb 14 01:30:22 UTC 2006


Author: vapier
Date: 2006-02-13 17:30:20 -0800 (Mon, 13 Feb 2006)
New Revision: 13963

Log:
fix gcc warning: ex3.c:31: warning: int format, different type arg (arg 2)

Modified:
   trunk/uClibc/test/pthread/ex3.c


Changeset:
Modified: trunk/uClibc/test/pthread/ex3.c
===================================================================
--- trunk/uClibc/test/pthread/ex3.c	2006-02-14 01:06:51 UTC (rev 13962)
+++ trunk/uClibc/test/pthread/ex3.c	2006-02-14 01:30:20 UTC (rev 13963)
@@ -28,7 +28,7 @@
 
   /* create a number to search for */
   pid = getpid();
-  printf("Searching for the number = %d...\n", pid);
+  printf("Searching for the number = %ld...\n", pid);
 
   /* Initialize the mutex lock */
   pthread_mutex_init(&lock, NULL);




More information about the uClibc-cvs mailing list