From 0ad4104e02a56af6b63c933ebb836441918360c7 Mon Sep 17 00:00:00 2001 From: Xuan Sang LE Date: Sun, 11 Feb 2018 00:04:24 +0100 Subject: [PATCH] fix db --- libs/plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/plugin.c b/libs/plugin.c index 473caa7..e1b01ae 100644 --- a/libs/plugin.c +++ b/libs/plugin.c @@ -23,7 +23,7 @@ sqldb __getdb(char *name) strcpy(path,__plugin__.dbpath); strcat(path,name); strcat(path,".db"); - LOG("data base: %s\n", path); + //LOG("database: %s\n", path); sqldb ret = (sqldb)database(path); free(path); return ret;