summaryrefslogtreecommitdiffstats
path: root/sysfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysfs.c')
-rw-r--r--sysfs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysfs.c b/sysfs.c
index 8379ca83..d28e21a2 100644
--- a/sysfs.c
+++ b/sysfs.c
@@ -394,7 +394,8 @@ unsigned long long get_component_size(int fd)
struct stat stb;
char fname[50];
int n;
- if (fstat(fd, &stb)) return 0;
+ if (fstat(fd, &stb))
+ return 0;
if (major(stb.st_rdev) != (unsigned)get_mdp_major())
sprintf(fname, "/sys/block/md%d/md/component_size",
(int)minor(stb.st_rdev));