From: Joel Rosdahl Date: Tue, 8 Jun 2010 20:54:17 +0000 (+0200) Subject: Improve format_size() doc comment X-Git-Tag: v3.0~44 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9b055d1076947ad9cf8480cafb65447c639a087f;p=thirdparty%2Fccache.git Improve format_size() doc comment --- diff --git a/util.c b/util.c index 5232fa4ae..0e63375e0 100644 --- a/util.c +++ b/util.c @@ -709,7 +709,7 @@ int safe_open(const char *fname) return fd; } -/* Format a size as a human-readable string. Caller frees. */ +/* Format a size (in KiB) as a human-readable string. Caller frees. */ char *format_size(size_t v) { char *s;