summary refs log tree commit diff
path: root/litterbox.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-12-01 20:24:29 -0500
committerJune McEnroe <june@causal.agency>2019-12-01 20:24:29 -0500
commita2ebcb31d3ec2cd25364d1ac906c9744718b485c (patch)
tree2208de81886c87167c8a390df035b4e265ebe1ad /litterbox.h
parentAdd XDG_DATA_DIRS default value (diff)
downloadlitterbox-a2ebcb31d3ec2cd25364d1ac906c9744718b485c.tar.gz
litterbox-a2ebcb31d3ec2cd25364d1ac906c9744718b485c.zip
Change database file name to litterbox.sqlite
Diffstat (limited to '')
-rw-r--r--litterbox.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/litterbox.h b/litterbox.h
index 07d4bbc..5a9a4f6 100644
--- a/litterbox.h
+++ b/litterbox.h
@@ -24,7 +24,7 @@
 #include <sys/stat.h>
 #include <sysexits.h>
 
-#define DATABASE_PATH "litterbox/database.sqlite"
+#define DATABASE_PATH "litterbox/litterbox.sqlite"
 
 static inline sqlite3 *dbOpenPath(char *path, int flags) {
 	char *base = strrchr(path, '/');