aboutsummaryrefslogtreecommitdiff
path: root/coreutils/df.c
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2003-03-23 20:27:33 +0000
committerManuel Novoa III <mjn3@codepoet.org>2003-03-23 20:27:33 +0000
commit3a9b0bf0ba475476c5922f229debeb8db1a2a5ca (patch)
treedc61631429afc37cd009f60212dedbb0f8c84448 /coreutils/df.c
parent4baef0c77f6826163e05949371895053e31e434a (diff)
downloadbusybox-3a9b0bf0ba475476c5922f229debeb8db1a2a5ca.tar.gz
Oops... had != but meant ==.
Diffstat (limited to 'coreutils/df.c')
-rw-r--r--coreutils/df.c2
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)
if (strcmp(device, "/dev/root") == 0) {
/* Adjusts device to be the real root device,
* or leaves device alone if it can't find it */
- if ((device = find_real_root_device_name(device)) != NULL) {
+ if ((device = find_real_root_device_name(device)) == NULL) {
goto SET_ERROR;
}
}