aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/input.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2005-08-09 20:27:14 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2005-08-29 15:54:34 -0700
commitf6ccf55419c4f0021e7382f000f2fd14a29f3d3c (patch)
treec0b6446bf3ebf84437eeb16d357a7845598de206 /net/dccp/input.c
parent[NETFILTER]: New iptables DCCP protocol header match (diff)
downloadlinux-dev-f6ccf55419c4f0021e7382f000f2fd14a29f3d3c.tar.xz
linux-dev-f6ccf55419c4f0021e7382f000f2fd14a29f3d3c.zip
[DCCP]: Fix u64 printf format warnings.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/input.c')
-rw-r--r--net/dccp/input.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/dccp/input.c b/net/dccp/input.c
index 622e976a51fe..76c3401e93a5 100644
--- a/net/dccp/input.c
+++ b/net/dccp/input.c
@@ -274,7 +274,9 @@ static int dccp_rcv_request_sent_state_process(struct sock *sk,
if (!between48(DCCP_SKB_CB(skb)->dccpd_ack_seq, dp->dccps_awl, dp->dccps_awh)) {
dccp_pr_debug("invalid ackno: S.AWL=%llu, P.ackno=%llu, S.AWH=%llu \n",
- dp->dccps_awl, DCCP_SKB_CB(skb)->dccpd_ack_seq, dp->dccps_awh);
+ (unsigned long long) dp->dccps_awl,
+ (unsigned long long) DCCP_SKB_CB(skb)->dccpd_ack_seq,
+ (unsigned long long) dp->dccps_awh);
goto out_invalid_packet;
}