summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/sqlite3/sqlite3.c
diff options
context:
space:
mode:
author Alex W. Jackson <alex.w.jackson@gmail.com>2015-02-19 19:14:04 -0500
committer Alex W. Jackson <alex.w.jackson@gmail.com>2015-02-19 19:14:04 -0500
commit59dab305ebecca82eb7ca6ac5462696dc37eb848 (patch)
tree4ee43a0d738ce63a78f2552dea8d9cf3502deb63 /3rdparty/sqlite3/sqlite3.c
parent9100b54a72a8fdaa5459625f1c4f7d35c55c7b58 (diff)
sqlite3: fix build on *ix (nw)
Diffstat (limited to '3rdparty/sqlite3/sqlite3.c')
-rw-r--r--3rdparty/sqlite3/sqlite3.c2
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