diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-04 14:00:32 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-04 14:00:32 +0200 |
commit | 258a0e9f84a54b41bb59b90f570f759cffd9abf3 (patch) | |
tree | 979c3639254a8cb1f0825c45c113825e5afca231 /src/storage.c | |
parent | sqlite: add run status field (diff) | |
download | cimple-258a0e9f84a54b41bb59b90f570f759cffd9abf3.tar.gz cimple-258a0e9f84a54b41bb59b90f570f759cffd9abf3.zip |
storage_sqlite: refactoring
Diffstat (limited to 'src/storage.c')
-rw-r--r-- | src/storage.c | 6 |
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, }, }; |