summaryrefslogtreecommitdiff
path: root/mdassemble.c
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2010-11-22 20:58:05 +1100
committerNeilBrown <neilb@suse.de>2010-11-22 20:58:05 +1100
commitfa56eddbd1ff1e007cfe588ddc97787d81a4fc3d (patch)
treef8981eddf1be405d8577fa587d079015b99b219f /mdassemble.c
parent08fb91a3630be9cb4efdb0586e9713dac104b22a (diff)
Improve mddev_ident type definitions.
Remove the _t typedef and remove the _s suffix from the struct name. These things do not help readability. Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'mdassemble.c')
-rw-r--r--mdassemble.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mdassemble.c b/mdassemble.c
index d0d0707e..28f431b4 100644
--- a/mdassemble.c
+++ b/mdassemble.c
@@ -88,7 +88,7 @@ int verbose = 0;
int force = 0;
int main(int argc, char *argv[]) {
- mddev_ident_t array_list = conf_get_ident(NULL);
+ struct mddev_ident *array_list = conf_get_ident(NULL);
if (!array_list) {
fprintf(stderr, Name ": No arrays found in config file\n");
rv = 1;