Implement idea of total (all) and new coverage directories, as well as concept of crash directory
diff --git a/honggfuzz.c b/honggfuzz.c
index ab870ba..2212ca0 100644
--- a/honggfuzz.c
+++ b/honggfuzz.c
@@ -150,15 +150,8 @@
     }
 
     if (!input_init(&hfuzz)) {
-        if (hfuzz.externalCommand) {
-            LOG_I(
-                "No input file corpus loaded, the external command '%s' is responsible for "
-                "creating the fuzz files",
-                hfuzz.externalCommand);
-        } else {
-            LOG_F("Couldn't load input files");
-            exit(EXIT_FAILURE);
-        }
+        LOG_F("Couldn't load input corpus");
+        exit(EXIT_FAILURE);
     }
 
     if (hfuzz.dictionaryFile && (input_parseDictionary(&hfuzz) == false)) {