diff options
-rw-r--r-- | 3rdparty/sqlite3/sqlite3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/sqlite3/sqlite3.c b/3rdparty/sqlite3/sqlite3.c index 90220cad070..cf858adc5de 100644 --- a/3rdparty/sqlite3/sqlite3.c +++ b/3rdparty/sqlite3/sqlite3.c @@ -25919,7 +25919,7 @@ static int unixLogErrorAtLine( const char *zPath, /* File path associated with error */ int iLine /* Source line number where error occurred */ ){ - char *zErr; /* Message from strerror() or equivalent */ + const char *zErr; /* Message from strerror() or equivalent */ int iErrno = errno; /* Saved syscall error number */ /* If this is not a threadsafe build (SQLITE_THREADSAFE==0), then use |