Commit bc4e6b28 authored by Fabian Frederick's avatar Fabian Frederick Committed by Dave Kleikamp

fs/jfs/jfs_logmgr.c: remove NULL assignment on static

Static values are automatically initialized to NULL
Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarDave Kleikamp <dave.kleikamp@oracle.com>
parent e31da3f9
......@@ -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);
/*
......
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