diff options
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/dm-log-userspace-base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-log-userspace-base.c b/drivers/md/dm-log-userspace-base.c index 6e186b1a062d..652bd33109e3 100644 --- a/drivers/md/dm-log-userspace-base.c +++ b/drivers/md/dm-log-userspace-base.c | |||
@@ -582,7 +582,7 @@ static int userspace_status(struct dm_dirty_log *log, status_type_t status_type, | |||
582 | break; | 582 | break; |
583 | case STATUSTYPE_TABLE: | 583 | case STATUSTYPE_TABLE: |
584 | sz = 0; | 584 | sz = 0; |
585 | table_args = strstr(lc->usr_argv_str, " "); | 585 | table_args = strchr(lc->usr_argv_str, ' '); |
586 | BUG_ON(!table_args); /* There will always be a ' ' */ | 586 | BUG_ON(!table_args); /* There will always be a ' ' */ |
587 | table_args++; | 587 | table_args++; |
588 | 588 | ||