diff options
author | Denis Vlasenko | 2006-12-31 18:57:37 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-12-31 18:57:37 +0000 |
commit | 98ee06d3d46aa7f89c204681c7075b53300a6a6e (patch) | |
tree | 0f5cafbb22cd83fb73e024acba658c7a51582951 /coreutils | |
parent | 806116b23407bdf95f22646f11f50b1d14e1cfc2 (diff) | |
download | busybox-98ee06d3d46aa7f89c204681c7075b53300a6a6e.zip busybox-98ee06d3d46aa7f89c204681c7075b53300a6a6e.tar.gz |
stop using __u32 etc. uint32_t is there for a reason
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 6ae3eed..3b32925 100644 --- a/coreutils/df.c +++ b/coreutils/df.c @@ -93,7 +93,7 @@ int df_main(int argc, char **argv) mount_entry = find_mount_point(mount_point, bb_path_mtab_file); if (!mount_entry) { bb_error_msg("%s: can't find mount point", mount_point); - SET_ERROR: + SET_ERROR: status = EXIT_FAILURE; continue; } |