We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c5e5dd commit daa8a45Copy full SHA for daa8a45
tools/mbck.cpp
@@ -119,7 +119,7 @@ static ssize_t ck_indices_present(sqlite3 *db)
119
ssize_t pr = 0;
120
printf("%s:", __func__);
121
for (const auto e : names) {
122
- auto e2 = strchr(e, '.');
+ const char *e2 = strchr(e, '.'); /* CONST-STRCHR-MARKER */
123
if (e2 == nullptr)
124
e2 = e;
125
auto stm = gx_sql_prep(db, fmt::format("PRAGMA index_list({})", ++e2).c_str());
0 commit comments