netfilter: fix seq_printf type mismatch warning
authorSherman Yin <shermanyin@gmail.com>
Thu, 12 Jun 2014 21:35:38 +0000 (14:35 -0700)
committerSherman Yin <shermanyin@gmail.com>
Thu, 12 Jun 2014 21:35:38 +0000 (14:35 -0700)
commit186197b12c189b9572a9e739d954674af77549ee
tree22c206862e248fc0d089e83a13e90d1bcf5a4b3d
parent092f5269621cc6654c9b77ffde7a241cb65d0e50
netfilter: fix seq_printf type mismatch warning

The return type of atomic64_read() varies depending on arch.  The
arm64 version is being changed from long long to long in the mainline
for v3.16, causing a seq_printf type mismatch (%llu) in
guid_ctrl_proc_show().

This commit fixes the type mismatch by casting atomic64_read() to u64.

Change-Id: Iae0a6bd4314f5686a9f4fecbe6203e94ec0870de
Signed-off-by: Sherman Yin <shermanyin@gmail.com>
net/netfilter/xt_qtaguid.c