aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/storage.h
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.h
parentsqlite: add run status field (diff)
downloadcimple-258a0e9f84a54b41bb59b90f570f759cffd9abf3.tar.gz
cimple-258a0e9f84a54b41bb59b90f570f759cffd9abf3.zip
storage_sqlite: refactoring
Diffstat (limited to '')
-rw-r--r--src/storage.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/storage.h b/src/storage.h
index e10ee87..139dcdd 100644
--- a/src/storage.h
+++ b/src/storage.h
@@ -17,7 +17,7 @@ enum storage_type {
struct storage_settings {
enum storage_type type;
union {
- struct storage_settings_sqlite *sqlite;
+ struct storage_sqlite_settings *sqlite;
};
};