Commit 479bab4f authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[PATCH] netfilter warning (alpha)

On alpha u64 is unsigned long; %llu is unsigned long long...
Signed-off-by: default avatarAl Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent db469a27
......@@ -73,7 +73,8 @@ static unsigned int
seq_print_counters(struct seq_file *s, struct ip_conntrack_counter *counter)
{
return seq_printf(s, "packets=%llu bytes=%llu ",
counter->packets, counter->bytes);
(unsigned long long)counter->packets,
(unsigned long long)counter->bytes);
}
#else
#define seq_print_counters(x, y) 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment