1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Move OSTRACE defines so they are visible to all source files that need them.

FossilOrigin-Name: 72485c97c6de47b8bba63b2a307e7bdeea114040
This commit is contained in:
mistachkin
2015-04-16 03:56:32 +00:00
parent 02b0e267fb
commit 0cbcffa75d
5 changed files with 24 additions and 24 deletions

View File

@@ -1206,7 +1206,7 @@ void sqlite3RollbackAll(sqlite3 *db, int tripCode){
** Return a static string containing the name corresponding to the error code
** specified in the argument.
*/
#ifdef SQLITE_HAVE_OS_TRACE
#if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE)
const char *sqlite3ErrName(int rc){
const char *zName = 0;
int i, origRc = rc;