diff options
author | Mark Whitley <markw@lineo.com> | 2000-12-07 19:56:48 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2000-12-07 19:56:48 +0000 |
commit | f57c944e09417edcbcd69f2b01b937cadef39db2 (patch) | |
tree | a55822621d54bd82c54e272fa986e45698fea0f1 /du.c | |
parent | 7b5c16ebe5f1b057603cf1c0b0187be418725c42 (diff) | |
download | busybox-w32-f57c944e09417edcbcd69f2b01b937cadef39db2.tar.gz busybox-w32-f57c944e09417edcbcd69f2b01b937cadef39db2.tar.bz2 busybox-w32-f57c944e09417edcbcd69f2b01b937cadef39db2.zip |
Changed names of functions in utility.c and all affected files, to make
compliant with the style guide. Everybody rebuild your tags file!
Diffstat (limited to 'du.c')
-rw-r--r-- | du.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -97,7 +97,7 @@ static long du(char *filename) | |||
97 | } | 97 | } |
98 | 98 | ||
99 | if (len + strlen(name) + 1 > BUFSIZ) { | 99 | if (len + strlen(name) + 1 > BUFSIZ) { |
100 | errorMsg(name_too_long); | 100 | error_msg(name_too_long); |
101 | du_depth--; | 101 | du_depth--; |
102 | return 0; | 102 | return 0; |
103 | } | 103 | } |
@@ -156,7 +156,7 @@ int du_main(int argc, char **argv) | |||
156 | for (i=optind; i < argc; i++) { | 156 | for (i=optind; i < argc; i++) { |
157 | if ((sum = du(argv[i])) == 0) | 157 | if ((sum = du(argv[i])) == 0) |
158 | status = EXIT_FAILURE; | 158 | status = EXIT_FAILURE; |
159 | if (sum && isDirectory(argv[i], FALSE, NULL)) { | 159 | if (sum && is_directory(argv[i], FALSE, NULL)) { |
160 | print_normal(sum, argv[i]); | 160 | print_normal(sum, argv[i]); |
161 | } | 161 | } |
162 | reset_ino_dev_hashtable(); | 162 | reset_ino_dev_hashtable(); |
@@ -166,7 +166,7 @@ int du_main(int argc, char **argv) | |||
166 | return status; | 166 | return status; |
167 | } | 167 | } |
168 | 168 | ||
169 | /* $Id: du.c,v 1.28 2000/12/06 15:56:31 kraai Exp $ */ | 169 | /* $Id: du.c,v 1.29 2000/12/07 19:56:48 markw Exp $ */ |
170 | /* | 170 | /* |
171 | Local Variables: | 171 | Local Variables: |
172 | c-file-style: "linux" | 172 | c-file-style: "linux" |