aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorGerrit Renker <gerrit@erg.abdn.ac.uk>2007-10-04 14:44:01 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 16:54:36 -0700
commitdcad856fe8e0222012d9ae0e4dc6c6e5cce276e6 (patch)
tree6eba059a2b8bea346ff54ad6bd9913991c7e4d5f /net
parent[DCCP]: Tidy-up -- minisock initialisation (diff)
downloadlinux-dev-dcad856fe8e0222012d9ae0e4dc6c6e5cce276e6.tar.xz
linux-dev-dcad856fe8e0222012d9ae0e4dc6c6e5cce276e6.zip
[DCCP]: Wrong format in printk
The elapsed time uses u32, but printk was using %d, not %u. Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk> Signed-off-by: Ian McDonald <ian.mcdonald@jandi.co.nz> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'net')
-rw-r--r--net/dccp/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/options.c b/net/dccp/options.c
index 172eb6ba8702..d361b5533309 100644
--- a/net/dccp/options.c
+++ b/net/dccp/options.c
@@ -179,7 +179,7 @@ int dccp_parse_options(struct sock *sk, struct sk_buff *skb)
else
elapsed_time = ntohl(*(__be32 *)(value + 4));
- dccp_pr_debug_cat(", ELAPSED_TIME=%d\n", elapsed_time);
+ dccp_pr_debug_cat(", ELAPSED_TIME=%u\n", elapsed_time);
/* Give precedence to the biggest ELAPSED_TIME */
if (elapsed_time > opt_recv->dccpor_elapsed_time)