summaryrefslogtreecommitdiffstats
path: root/database
diff options
context:
space:
mode:
authorStelios Fragkakis <52996999+stelfrag@users.noreply.github.com>2022-07-21 10:14:19 +0300
committerGitHub <noreply@github.com>2022-07-21 10:14:19 +0300
commitfccfc02d2c1966b814b6babcd8dddb0c6e822d45 (patch)
tree540b6217e8d21e449cd41ccb97b49ea29b298bc4 /database
parentdee27395f0a2d030fba0595232f7fe226daabe69 (diff)
Add missing comma (handle coverity warning CID 379360) (#13413)
Add missing comma (handle coverity warning) *** CID 379360: Incorrect expression (MISSING_COMMA)
Diffstat (limited to 'database')
-rw-r--r--database/sqlite/sqlite_functions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/database/sqlite/sqlite_functions.c b/database/sqlite/sqlite_functions.c
index 2987bb9d1d..d48578d14f 100644
--- a/database/sqlite/sqlite_functions.c
+++ b/database/sqlite/sqlite_functions.c
@@ -33,7 +33,7 @@ const char *database_config[] = {
"p_db_lookup_after int, p_db_lookup_before int, p_update_every int);",
"CREATE TABLE IF NOT EXISTS host_info(host_id blob, system_key text NOT NULL, system_value text NOT NULL, "
- "date_created INT, PRIMARY KEY(host_id, system_key));"
+ "date_created INT, PRIMARY KEY(host_id, system_key));",
"CREATE TABLE IF NOT EXISTS chart_hash_map(chart_id blob , hash_id blob, UNIQUE (chart_id, hash_id));",