* src/threads/threads-common.c (threads_dump) [!SIZEOF_VOID_P == 8]:
authortwisti <none@none>
Wed, 25 Apr 2007 20:56:16 +0000 (20:56 +0000)
committertwisti <none@none>
Wed, 25 Apr 2007 20:56:16 +0000 (20:56 +0000)
Fixed warning.

src/threads/threads-common.c

index 5d3956c4043fdf8dc92f7f8b3ec0dca58df08d7e..4e2fd20228ab3ef1b7190078c794060c967da556 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: threads-common.c 7825 2007-04-25 20:31:57Z twisti $
+   $Id: threads-common.c 7826 2007-04-25 20:56:16Z twisti $
 
 */
 
@@ -343,7 +343,7 @@ void threads_dump(void)
                        printf(" tid=0x%016lx (%ld)",
                                   (ptrint) thread->tid, (ptrint) thread->tid);
 #else
-                       printf(" tid=0x%08lx (%ld)",
+                       printf(" tid=0x%08x (%d)",
                                   (ptrint) thread->tid, (ptrint) thread->tid);
 #endif