diff options
author | Heinz Mauelshagen <heinzm@redhat.com> | 2023-01-25 21:14:58 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-04-13 16:55:17 +0200 |
commit | 83ee6b2729429f7feadd42e081751c00225d2347 (patch) | |
tree | 13ed42af2f248e0ef507cd30da14852535735ab4 /drivers/md/dm-path-selector.h | |
parent | 32bde86816aa27fb4ef8312a66f49b6bcbd514b9 (diff) | |
download | linux-83ee6b2729429f7feadd42e081751c00225d2347.tar.gz linux-83ee6b2729429f7feadd42e081751c00225d2347.tar.bz2 linux-83ee6b2729429f7feadd42e081751c00225d2347.zip |
dm: change "unsigned" to "unsigned int"
[ Upstream commit 86a3238c7b9b759cb864f4f768ab2e24687dc0e6 ]
Signed-off-by: Heinz Mauelshagen <heinzm@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
Stable-dep-of: f7b58a69fad9 ("dm: fix improper splitting for abnormal bios")
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/md/dm-path-selector.h')
-rw-r--r-- | drivers/md/dm-path-selector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-path-selector.h b/drivers/md/dm-path-selector.h index 83cac2b04b66..0f2b37af8766 100644 --- a/drivers/md/dm-path-selector.h +++ b/drivers/md/dm-path-selector.h @@ -52,7 +52,7 @@ struct path_selector_type { /* * Constructs a path selector object, takes custom arguments */ - int (*create) (struct path_selector *ps, unsigned argc, char **argv); + int (*create) (struct path_selector *ps, unsigned int argc, char **argv); void (*destroy) (struct path_selector *ps); /* |