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.h | |
parent | sqlite: add run status field (diff) | |
download | cimple-258a0e9f84a54b41bb59b90f570f759cffd9abf3.tar.gz cimple-258a0e9f84a54b41bb59b90f570f759cffd9abf3.zip |
storage_sqlite: refactoring
Diffstat (limited to '')
-rw-r--r-- | src/storage.h | 2 |
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; }; }; |