diff options
author | Gary Benson <gbenson@redhat.com> | 2015-06-11 13:38:15 +0100 |
---|---|---|
committer | Gary Benson <gbenson@redhat.com> | 2015-06-11 13:38:15 +0100 |
commit | 6449ed0d3a78ba8c25e8a634f8d6ed120a4cac7f (patch) | |
tree | 29757ba83a4caea9f0916befdc94cb8ac17594b1 /gdb/nat | |
parent | 34f8ac9f490fc38a07d03ec8e425c06a2bb737b2 (diff) | |
download | binutils-6449ed0d3a78ba8c25e8a634f8d6ed120a4cac7f.zip binutils-6449ed0d3a78ba8c25e8a634f8d6ed120a4cac7f.tar.gz binutils-6449ed0d3a78ba8c25e8a634f8d6ed120a4cac7f.tar.bz2 |
Use pulongest for printing ssize_t
This commit changes the debug printing code in linux-namespaces.c
to use pulongest instead of "%ld".
gdb/ChangeLog:
* nat/linux-namespaces.c (mnsh_send_message): Use pulongest.
(mnsh_recv_message): Likewise.
Diffstat (limited to 'gdb/nat')
-rw-r--r-- | gdb/nat/linux-namespaces.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/nat/linux-namespaces.c b/gdb/nat/linux-namespaces.c index 98ae104..f18e40d 100644 --- a/gdb/nat/linux-namespaces.c +++ b/gdb/nat/linux-namespaces.c @@ -374,7 +374,7 @@ mnsh_send_message (int sock, enum mnsh_msg_type type, { debug_printf ("mnsh: send: "); mnsh_debug_print_message (type, fd, int1, int2, buf, bufsiz); - debug_printf (" -> %ld\n", size); + debug_printf (" -> %s\n", pulongest (size)); } return size; @@ -426,7 +426,8 @@ mnsh_recv_message (int sock, enum mnsh_msg_type *type, if (size < 0) { if (debug_linux_namespaces) - debug_printf ("namespace-helper: recv failed (%ld)\n", size); + debug_printf ("namespace-helper: recv failed (%s)\n", + pulongest (size)); mnsh_maybe_mourn_peer (); @@ -437,8 +438,8 @@ mnsh_recv_message (int sock, enum mnsh_msg_type *type, if (size < fixed_size || (msg.msg_flags & (MSG_TRUNC | MSG_CTRUNC))) { if (debug_linux_namespaces) - debug_printf ("namespace-helper: recv truncated (%ld 0x%x)\n", - size, msg.msg_flags); + debug_printf ("namespace-helper: recv truncated (%s 0x%x)\n", + pulongest (size), msg.msg_flags); mnsh_maybe_mourn_peer (); |