fs/jfs/jfs_logmgr.c: remove NULL assignment on static
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>
This commit is contained in:
parent
e31da3f98d
commit
bc4e6b28ac
|
@ -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);
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue