From 5a754bcdc0f5e432c1d7cd358c74dfb2d6f0f1ea Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sat, 28 Dec 2019 12:28:25 -0500 Subject: Fixes: * doxygen config * doxygen @file directives * corrected stupid strip() implemention * corrected strip usage by config parser. wrong pointer. --- src/fs.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/fs.c') diff --git a/src/fs.c b/src/fs.c index e20b6a7..5ea8f6b 100644 --- a/src/fs.c +++ b/src/fs.c @@ -1,3 +1,6 @@ +/** + * @file fs.c + */ #include "spm.h" FSTree *fstree(const char *_path) { @@ -354,7 +357,7 @@ int mkdirs(const char *_path, mode_t mode) { * free(output); * output = human_readable_size(1024) // "1.0K" * free(output); - * output = human_readable_size(1024000) // "1.0MB" + * output = human_readable_size(1024000) // "1.0M" * free(output); * // and so on * ~~~ -- cgit