Skip to content
Snippets Groups Projects
Commit abd3fcb0 authored by Andreas Dilger's avatar Andreas Dilger
Browse files

Fix valid uninitialized variable gcc warning.

parent 12f196cc
No related branches found
No related tags found
No related merge requests found
...@@ -298,7 +298,7 @@ int lprocfs_register_mountpoint(struct proc_dir_entry *parent, ...@@ -298,7 +298,7 @@ int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
entry = create_proc_entry("dump_page_cache", 0444, sbi->ll_proc_root); entry = create_proc_entry("dump_page_cache", 0444, sbi->ll_proc_root);
if (entry == NULL) if (entry == NULL)
GOTO(out, -ENOMEM); GOTO(out, err = -ENOMEM);
entry->proc_fops = &llite_dump_pgcache_fops; entry->proc_fops = &llite_dump_pgcache_fops;
entry->data = sbi; entry->data = sbi;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment