From: Dmitry V. Levin Date: Tue, 1 May 2012 20:30:02 +0000 (+0000) Subject: Remove recently introduced use of ULONG_MAX X-Git-Tag: v4.7~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=043b5f81429412cf23d578d1dc2b45107a8352e5;p=strace Remove recently introduced use of ULONG_MAX * io.c: Remove limits.h inclusion. (tprint_iov): Use "(unsigned long) -1L" instead of "ULONG_MAX". * net.c: Remove limits.h inclusion. (printmmsghdr, sys_sendmsg): Use "(unsigned long) -1L" instead of "ULONG_MAX". --- diff --git a/io.c b/io.c index bf5baa29..6b3f4b70 100644 --- a/io.c +++ b/io.c @@ -30,7 +30,6 @@ #include "defs.h" #include -#include #if HAVE_SYS_UIO_H # include #endif @@ -143,7 +142,7 @@ tprint_iov_upto(struct tcb *tcp, unsigned long len, unsigned long addr, int deco void tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov) { - tprint_iov_upto(tcp, len, addr, decode_iov, ULONG_MAX); + tprint_iov_upto(tcp, len, addr, decode_iov, (unsigned long) -1L); } int diff --git a/net.c b/net.c index fba521be..050b746b 100644 --- a/net.c +++ b/net.c @@ -29,7 +29,6 @@ */ #include "defs.h" -#include #include #include #include @@ -1455,7 +1454,7 @@ printmmsghdr(struct tcb *tcp, long addr, unsigned int idx) return; } tprints("{"); - do_msghdr(tcp, &mmsg.msg_hdr, ULONG_MAX); + do_msghdr(tcp, &mmsg.msg_hdr, (unsigned long) -1L); tprintf(", %u}", mmsg.msg_len); } @@ -1639,7 +1638,7 @@ sys_sendmsg(struct tcb *tcp) { if (entering(tcp)) { tprintf("%ld, ", tcp->u_arg[0]); - printmsghdr(tcp, tcp->u_arg[1], ULONG_MAX); + printmsghdr(tcp, tcp->u_arg[1], (unsigned long) -1L); /* flags */ tprints(", "); printflags(msg_flags, tcp->u_arg[2], "MSG_???");