From: Mark Kettenis Date: Tue, 10 Aug 2004 16:05:38 +0000 (+0000) Subject: * procfs.c (procfs_pid_to_str): Use "%ld" to print LWP. X-Git-Tag: csl-arm-2004-q3~541 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=21749010c896d54eb61863f699e7a1864e239001;p=thirdparty%2Fbinutils-gdb.git * procfs.c (procfs_pid_to_str): Use "%ld" to print LWP. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6bb50baf22b..0e91ff3f63b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2004-08-10 Mark Kettenis + + * procfs.c (procfs_pid_to_str): Use "%ld" to print LWP. + 2004-08-09 Joel Brobecker General cleanup of the AIX xm include file: diff --git a/gdb/procfs.c b/gdb/procfs.c index 19d7ae3904c..b94e03710ac 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -5132,7 +5132,7 @@ procfs_pid_to_str (ptid_t ptid) if (TIDGET (ptid) == 0) sprintf (buf, "process %d", PIDGET (ptid)); else - sprintf (buf, "LWP %d", TIDGET (ptid)); + sprintf (buf, "LWP %ld", TIDGET (ptid)); return buf; }