Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
quentin committed Mar 4, 2022
1 parent 2d26ba7 commit 6c731e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/include/souffle/io/ReadStreamSQLite.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class ReadStreamSQLite : public ReadStream {
}

void openDB() {
sqlite3_config(SQLITE_CONFIG_URI,1);
sqlite3_config(SQLITE_CONFIG_URI, 1);
if (sqlite3_open(dbFilename.c_str(), &db) != SQLITE_OK) {
throwError("SQLite error in sqlite3_open: ");
}
Expand Down
2 changes: 1 addition & 1 deletion src/include/souffle/io/WriteStreamSQLite.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class WriteStreamSQLite : public WriteStream {
}

void openDB() {
sqlite3_config(SQLITE_CONFIG_URI,1);
sqlite3_config(SQLITE_CONFIG_URI, 1);
if (sqlite3_open(dbFilename.c_str(), &db) != SQLITE_OK) {
throwError("SQLite error in sqlite3_open: ");
}
Expand Down

0 comments on commit 6c731e5

Please sign in to comment.