diff options
author | Jia He <hejianet@gmail.com> | 2016-09-30 06:29:04 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-09-30 08:50:45 +0300 |
commit | 6d4a741cbbfa6612a479656654ca5edf7becc72c (patch) | |
tree | d977daa27ad975a6acbc313ec792592f4cf50847 /net/sctp/proc.c | |
parent | aca05671d58cea06dc60bbe554b8b399af7da409 (diff) | |
download | linux-6d4a741cbbfa6612a479656654ca5edf7becc72c.tar.xz |
net: Suppress the "Comparison to NULL could be written" warnings
This is to suppress the checkpatch.pl warning "Comparison to NULL
could be written". No functional changes here.
Signed-off-by: Jia He <hejianet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/proc.c')
-rw-r--r-- | net/sctp/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/proc.c b/net/sctp/proc.c index 09e16c2b5c17..206377fe91ec 100644 --- a/net/sctp/proc.c +++ b/net/sctp/proc.c @@ -81,7 +81,7 @@ static int sctp_snmp_seq_show(struct seq_file *seq, void *v) snmp_get_cpu_field_batch(buff, sctp_snmp_list, net->sctp.sctp_statistics); - for (i = 0; sctp_snmp_list[i].name != NULL; i++) + for (i = 0; sctp_snmp_list[i].name; i++) seq_printf(seq, "%-32s\t%ld\n", sctp_snmp_list[i].name, buff[i]); |