Skip to content

Commit

Permalink
nfs: do not initialise statics to 0
Browse files Browse the repository at this point in the history
This patch fixes the checkpatch.pl error to nfs4sysctl.c:

ERROR: do not initialise statics to 0

Signed-off-by: Wei Tang <[email protected]>
Signed-off-by: Trond Myklebust <[email protected]>
  • Loading branch information
Wei Tang authored and trondmypd committed Dec 28, 2015
1 parent f484830 commit ed47675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/nfs/nfs4sysctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "nfs4idmap.h"
#include "callback.h"

static const int nfs_set_port_min = 0;
static const int nfs_set_port_min;
static const int nfs_set_port_max = 65535;
static struct ctl_table_header *nfs4_callback_sysctl_table;

Expand Down

0 comments on commit ed47675

Please sign in to comment.