summaryrefslogtreecommitdiff
path: root/fs/filesystems.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/filesystems.c')
-rw-r--r--fs/filesystems.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/filesystems.c b/fs/filesystems.c
index 9593c8206a53..cf58df08fcb3 100644
--- a/fs/filesystems.c
+++ b/fs/filesystems.c
@@ -279,7 +279,7 @@ struct file_system_type *get_fs_type(const char *name)
if (fs && !try_module_get(fs->owner))
fs = NULL;
read_unlock(&file_systems_lock);
- if (!fs && (request_module(name) == 0)) {
+ if (!fs && (request_module("%s", name) == 0)) {
read_lock(&file_systems_lock);
fs = *(find_filesystem(name));
if (fs && !try_module_get(fs->owner))