From 4f40435726f804eefe49008598f386cee44dcc90 Mon Sep 17 00:00:00 2001 From: Ankit Aggarwal Date: Wed, 13 Apr 2016 00:07:29 +0530 Subject: [PATCH] Fix indentation --- lib/Core/SQLiteBuildDB.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/Core/SQLiteBuildDB.cpp b/lib/Core/SQLiteBuildDB.cpp index d78282d778a..1e1f15d9c91 100644 --- a/lib/Core/SQLiteBuildDB.cpp +++ b/lib/Core/SQLiteBuildDB.cpp @@ -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( @@ -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) {