Skip to content

Commit

Permalink
Merge pull request swiftlang#16 from aciidb0mb3r/fix_indent
Browse files Browse the repository at this point in the history
Fix indentation
  • Loading branch information
ddunbar committed Apr 12, 2016
2 parents 3c69c70 + 4f40435 commit a69e629
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 a69e629

Please sign in to comment.