aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4')
-rw-r--r--net/ipv4/tcp_probe.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv4/tcp_probe.c b/net/ipv4/tcp_probe.c
index be94d526c7cb..d7d517a3a238 100644
--- a/net/ipv4/tcp_probe.c
+++ b/net/ipv4/tcp_probe.c
@@ -68,7 +68,9 @@ static void printl(const char *fmt, ...)
68 now.tv_usec += 1000000; 68 now.tv_usec += 1000000;
69 } 69 }
70 70
71 len = sprintf(tbuf, "%lu.%06lu ", now.tv_sec, now.tv_usec); 71 len = sprintf(tbuf, "%lu.%06lu ",
72 (unsigned long) now.tv_sec,
73 (unsigned long) now.tv_usec);
72 len += vscnprintf(tbuf+len, sizeof(tbuf)-len, fmt, args); 74 len += vscnprintf(tbuf+len, sizeof(tbuf)-len, fmt, args);
73 va_end(args); 75 va_end(args);
74 76