Skip to content

Commit

Permalink
Fix a missing comma in the previous check-in.
Browse files Browse the repository at this point in the history
  • Loading branch information
D. Richard Hipp committed Jun 17, 2017
1 parent f8c5a52 commit 487ad45
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/ctime.c
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ static const char * const azCompileOpt[] = {
#elif defined(THREADSAFE)
"THREADSAFE=" CTIMEOPT_VAL(THREADSAFE),
#else
"THREADSAFE=1"
"THREADSAFE=1",
#endif
#if SQLITE_UNLINK_AFTER_CLOSE
"UNLINK_AFTER_CLOSE",
Expand Down Expand Up @@ -733,4 +733,3 @@ const char **sqlite3CompileOptions(int *pnOpt){
}

#endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */

0 comments on commit 487ad45

Please sign in to comment.