diff options
author | Mark Whitley | 2001-03-07 17:42:07 +0000 |
---|---|---|
committer | Mark Whitley | 2001-03-07 17:42:07 +0000 |
commit | ae5612ca6e74ba251cd10fc853dcf9694c0fecf1 (patch) | |
tree | ba3e50459f4b4ae476ce19e797c68c5e6de055e0 /utility.c | |
parent | ae20128e9f7a7d31629079068b04cf7119cc40df (diff) | |
download | busybox-ae5612ca6e74ba251cd10fc853dcf9694c0fecf1.zip busybox-ae5612ca6e74ba251cd10fc853dcf9694c0fecf1.tar.gz |
Some minor cleanups to df.c. Also, with Erik's blessing, changed name of
'format' function to 'make_human_readable_str'.
Diffstat (limited to 'utility.c')
-rw-r--r-- | utility.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1798,7 +1798,7 @@ ssize_t safe_read(int fd, void *buf, size_t count) #endif #ifdef BB_FEATURE_HUMAN_READABLE -const char *format(unsigned long val, unsigned long hr) +const char *make_human_readable_str(unsigned long val, unsigned long hr) { int i=0; static char str[10] = "\0"; |