Skip to content

Commit

Permalink
fs/jfs/jfs_logmgr.c: remove NULL assignment on static
Browse files Browse the repository at this point in the history
Static values are automatically initialized to NULL

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
  • Loading branch information
Fabian Frederick authored and Dave Kleikamp committed Jun 3, 2014
1 parent e31da3f commit bc4e6b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/jfs/jfs_logmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ do { \
* Global list of active external journals
*/
static LIST_HEAD(jfs_external_logs);
static struct jfs_log *dummy_log = NULL;
static struct jfs_log *dummy_log;
static DEFINE_MUTEX(jfs_log_mutex);

/*
Expand Down

0 comments on commit bc4e6b2

Please sign in to comment.