diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-08-10 16:05:38 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-08-10 16:05:38 +0000 |
commit | 21749010c896d54eb61863f699e7a1864e239001 (patch) | |
tree | 72c87530017fab529df1f783b0e35d5d849c00cd /gdb/procfs.c | |
parent | 99877b66add640cf4034b264219d5d8f511a5f72 (diff) | |
download | gdb-21749010c896d54eb61863f699e7a1864e239001.zip gdb-21749010c896d54eb61863f699e7a1864e239001.tar.gz gdb-21749010c896d54eb61863f699e7a1864e239001.tar.bz2 |
* procfs.c (procfs_pid_to_str): Use "%ld" to print LWP.
Diffstat (limited to 'gdb/procfs.c')
-rw-r--r-- | gdb/procfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/procfs.c b/gdb/procfs.c index 19d7ae3..b94e037 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; } |