@cryptotaxi247 / netdata-1 / commits / fccfc02d2

Add missing comma (handle coverity warning CID 379360) (#13413)

Add missing comma (handle coverity warning) *** CID 379360: Incorrect expression (MISSING_COMMA)

Stelios Fragkakis committed Jul 21, 2022 at 10:14 UTC fccfc02d2c1966b814b6babcd8dddb0c6e822d45
1 file changed +1 -1
database/sqlite/sqlite_functions.c
+1 -1
@@ -33,7 +33,7 @@ const char *database_config[] = {
33 "p_db_lookup_after int, p_db_lookup_before int, p_update_every int);",
34
35 "CREATE TABLE IF NOT EXISTS host_info(host_id blob, system_key text NOT NULL, system_value text NOT NULL, "
36 - "date_created INT, PRIMARY KEY(host_id, system_key));"
36 + "date_created INT, PRIMARY KEY(host_id, system_key));",
37
38 "CREATE TABLE IF NOT EXISTS chart_hash_map(chart_id blob , hash_id blob, UNIQUE (chart_id, hash_id));",
39