You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
707 B
29 lines
707 B
6 years ago
|
From ffaf1a7eefc6167d7457d649e628c04ccee9a4dd Mon Sep 17 00:00:00 2001
|
||
|
From: Jes Sorensen <jsorensen@fb.com>
|
||
|
Date: Fri, 29 Sep 2017 18:08:01 -0400
|
||
|
Subject: [RHEL7.5 PATCH 12/13] Manage_subdevs(): Use a dev_t
|
||
|
|
||
|
Use the correct type for rdev
|
||
|
|
||
|
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
|
||
|
---
|
||
|
Manage.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/Manage.c b/Manage.c
|
||
|
index 871d342..21536f5 100644
|
||
|
--- a/Manage.c
|
||
|
+++ b/Manage.c
|
||
|
@@ -1367,7 +1367,7 @@ int Manage_subdevs(char *devname, int fd,
|
||
|
}
|
||
|
|
||
|
for (dv = devlist; dv; dv = dv->next) {
|
||
|
- unsigned long rdev = 0; /* device to add/remove etc */
|
||
|
+ dev_t rdev = 0; /* device to add/remove etc */
|
||
|
int rv;
|
||
|
int mj,mn;
|
||
|
|
||
|
--
|
||
|
2.7.4
|
||
|
|