Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
aciidgh committed Apr 12, 2016
1 parent 3c69c70 commit 4f40435
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lib/Core/SQLiteBuildDB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ class SQLiteBuildDB : public BuildDB {

// Create the info table.
if (result == SQLITE_OK) {
result = sqlite3_exec(
result = sqlite3_exec(
db, ("CREATE TABLE info ("
"id INTEGER PRIMARY KEY, "
"version INTEGER, "
"client_version INTEGER, "
"iteration INTEGER);"),
nullptr, nullptr, &cError);
"id INTEGER PRIMARY KEY, "
"version INTEGER, "
"client_version INTEGER, "
"iteration INTEGER);"),
nullptr, nullptr, &cError);
}
if (result == SQLITE_OK) {
char* query = sqlite3_mprintf(
Expand Down Expand Up @@ -166,7 +166,7 @@ class SQLiteBuildDB : public BuildDB {

// Sync changes to disk.
if (result == SQLITE_OK) {
result = sqlite3_exec(db, "END;", nullptr, nullptr, &cError);
result = sqlite3_exec(db, "END;", nullptr, nullptr, &cError);
}

if (result != SQLITE_OK) {
Expand Down

0 comments on commit 4f40435

Please sign in to comment.