diff options
-rw-r--r-- | src/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -82,11 +82,10 @@ blogc_mkdir_recursive(const char *filename) // FIXME: show this warning only if actually trying to create a directory. fprintf(stderr, "blogc: warning: can't create output directories " "for your platform. please create the directories yourself.\n"); - goto cleanup; + break; #endif } } -cleanup: free(fname); } |