aboutsummaryrefslogtreecommitdiff
path: root/src/fs.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2019-12-28 12:28:25 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2019-12-28 12:28:25 -0500
commit5a754bcdc0f5e432c1d7cd358c74dfb2d6f0f1ea (patch)
treea60ffaacdaa394f8a9772220b50a47d5f51bddc6 /src/fs.c
parenta267f8258162fdab350944676b2e71f858c3de51 (diff)
downloadspmc-5a754bcdc0f5e432c1d7cd358c74dfb2d6f0f1ea.tar.gz
Fixes:
* doxygen config * doxygen @file directives * corrected stupid strip() implemention * corrected strip usage by config parser. wrong pointer.
Diffstat (limited to 'src/fs.c')
-rw-r--r--src/fs.c5
1 files changed, 4 insertions, 1 deletions
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
* ~~~