aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2005-08-22 02:46:01 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2005-08-29 19:04:27 -0400
commit58e45131dc269eff0983c6d44494f9e687686900 (patch)
tree2ad04be66ec5ac7471c89180ff85f301e4f19a87 /net
parent05465343bf74e00c8c2c5a310740157de3149f27 (diff)
[DCCP]: Fix printf format warnings on 64-bit.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/dccp/input.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/net/dccp/input.c b/net/dccp/input.c
index 5847cf454e26..85402532e4e9 100644
--- a/net/dccp/input.c
+++ b/net/dccp/input.c
@@ -141,10 +141,16 @@ static int dccp_check_seqno(struct sock *sk, struct sk_buff *skb)
141 "(P.ackno %s or LAWL(%llu) <= P.ackno(%llu) <= S.AWH(%llu), " 141 "(P.ackno %s or LAWL(%llu) <= P.ackno(%llu) <= S.AWH(%llu), "
142 "sending SYNC...\n", 142 "sending SYNC...\n",
143 dccp_packet_name(dh->dccph_type), 143 dccp_packet_name(dh->dccph_type),
144 lswl, DCCP_SKB_CB(skb)->dccpd_seq, dp->dccps_swh, 144 (unsigned long long) lswl,
145 (unsigned long long)
146 DCCP_SKB_CB(skb)->dccpd_seq,
147 (unsigned long long) dp->dccps_swh,
145 (DCCP_SKB_CB(skb)->dccpd_ack_seq == 148 (DCCP_SKB_CB(skb)->dccpd_ack_seq ==
146 DCCP_PKT_WITHOUT_ACK_SEQ) ? "doesn't exist" : "exists", 149 DCCP_PKT_WITHOUT_ACK_SEQ) ? "doesn't exist" : "exists",
147 lawl, DCCP_SKB_CB(skb)->dccpd_ack_seq, dp->dccps_awh); 150 (unsigned long long) lawl,
151 (unsigned long long)
152 DCCP_SKB_CB(skb)->dccpd_ack_seq,
153 (unsigned long long) dp->dccps_awh);
148 dccp_send_sync(sk, DCCP_SKB_CB(skb)->dccpd_seq, DCCP_PKT_SYNC); 154 dccp_send_sync(sk, DCCP_SKB_CB(skb)->dccpd_seq, DCCP_PKT_SYNC);
149 return -1; 155 return -1;
150 } 156 }