aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/storage.c
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-04 14:00:32 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-04 14:00:32 +0200
commit258a0e9f84a54b41bb59b90f570f759cffd9abf3 (patch)
tree979c3639254a8cb1f0825c45c113825e5afca231 /src/storage.c
parentsqlite: add run status field (diff)
downloadcimple-258a0e9f84a54b41bb59b90f570f759cffd9abf3.tar.gz
cimple-258a0e9f84a54b41bb59b90f570f759cffd9abf3.zip
storage_sqlite: refactoring
Diffstat (limited to 'src/storage.c')
-rw-r--r--src/storage.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/storage.c b/src/storage.c
index b7f74e5..a273030 100644
--- a/src/storage.c
+++ b/src/storage.c
@@ -23,9 +23,9 @@ struct storage_api {
static const struct storage_api apis[] = {
{
- storage_settings_destroy_sqlite,
- storage_create_sqlite,
- storage_destroy_sqlite,
+ storage_sqlite_settings_destroy,
+ storage_sqlite_create,
+ storage_sqlite_destroy,
},
};