diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-31 18:57:37 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-31 18:57:37 +0000 |
commit | 645de6d456ea0bd583ce728a51c2c5ed68c4eaef (patch) | |
tree | 0f5cafbb22cd83fb73e024acba658c7a51582951 /coreutils | |
parent | 6d90558d35437d175b7b45838e3f2930253e9a94 (diff) | |
download | busybox-w32-645de6d456ea0bd583ce728a51c2c5ed68c4eaef.tar.gz busybox-w32-645de6d456ea0bd583ce728a51c2c5ed68c4eaef.tar.bz2 busybox-w32-645de6d456ea0bd583ce728a51c2c5ed68c4eaef.zip |
stop using __u32 etc. uint32_t is there for a reason
git-svn-id: svn://busybox.net/trunk/busybox@17117 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 6ae3eed33..3b3292590 100644 --- a/coreutils/df.c +++ b/coreutils/df.c | |||
@@ -93,7 +93,7 @@ int df_main(int argc, char **argv) | |||
93 | mount_entry = find_mount_point(mount_point, bb_path_mtab_file); | 93 | mount_entry = find_mount_point(mount_point, bb_path_mtab_file); |
94 | if (!mount_entry) { | 94 | if (!mount_entry) { |
95 | bb_error_msg("%s: can't find mount point", mount_point); | 95 | bb_error_msg("%s: can't find mount point", mount_point); |
96 | SET_ERROR: | 96 | SET_ERROR: |
97 | status = EXIT_FAILURE; | 97 | status = EXIT_FAILURE; |
98 | continue; | 98 | continue; |
99 | } | 99 | } |