From 59dab305ebecca82eb7ca6ac5462696dc37eb848 Mon Sep 17 00:00:00 2001 From: "Alex W. Jackson" Date: Thu, 19 Feb 2015 19:14:04 -0500 Subject: sqlite3: fix build on *ix (nw) --- 3rdparty/sqlite3/sqlite3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3