diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/df.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/df.c b/coreutils/df.c index cbe316920..708e12cc0 100644 --- a/coreutils/df.c +++ b/coreutils/df.c | |||
@@ -143,7 +143,7 @@ extern int df_main(int argc, char **argv) | |||
143 | if (strcmp(device, "/dev/root") == 0) { | 143 | if (strcmp(device, "/dev/root") == 0) { |
144 | /* Adjusts device to be the real root device, | 144 | /* Adjusts device to be the real root device, |
145 | * or leaves device alone if it can't find it */ | 145 | * or leaves device alone if it can't find it */ |
146 | if ((device = find_real_root_device_name(device)) != NULL) { | 146 | if ((device = find_real_root_device_name(device)) == NULL) { |
147 | goto SET_ERROR; | 147 | goto SET_ERROR; |
148 | } | 148 | } |
149 | } | 149 | } |