summaryrefslogtreecommitdiff
path: root/databases/sqlite3/files/patch-src-os_unix.c
blob: 2247e61c392df5cd1fc31cfa5fc5a01459069d0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- src/os_unix.c.orig	2010-08-31 10:44:29.000000000 +0400
+++ src/os_unix.c	2010-08-31 10:44:48.000000000 +0400
@@ -4841,7 +4841,7 @@
   char *zErr;
   UNUSED_PARAMETER(NotUsed);
   unixEnterMutex();
-  zErr = dlerror();
+  zErr = (char *)dlerror();
   if( zErr ){
     sqlite3_snprintf(nBuf, zBufOut, "%s", zErr);
   }