diff options
author | Joel Rosdahl <joel@rosdahl.net> | 2011-07-18 12:09:23 +0200 |
---|---|---|
committer | Joel Rosdahl <joel@rosdahl.net> | 2011-07-20 23:31:37 +0200 |
commit | c5c683346ba30b2535bb93f917c9b4e36737417e (patch) | |
tree | ae27c7c542aae1be3b980d2df2a810a49701c8ca /util.c | |
parent | 469267b2be49d6acdca5058e3e744a508ce3da5d (diff) | |
download | ccache-c5c683346ba30b2535bb93f917c9b4e36737417e.tar.gz |
Rename format_size to format_human_readable_size
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -817,7 +817,7 @@ safe_create_wronly(const char *fname) /* Format a size (in KiB) as a human-readable string. Caller frees. */ char * -format_size(size_t v) +format_human_readable_size(size_t v) { char *s; if (v >= 1024*1024) { |