Image placeholder

This commit is contained in:
2019-11-09 23:26:49 -05:00
parent ba81748a74
commit fc22e52eae
4 changed files with 32 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ store_t *store_create(char *path) {
);
if (open_ret != 0) {
fprintf(stderr, "Error while opening store: %s", mdb_strerror(open_ret));
fprintf(stderr, "Error while opening store: %s (%s)\n", mdb_strerror(open_ret), path);
exit(1);
}