1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Fix a warning in os_unix.c.

FossilOrigin-Name: ee8dc8c87ed15b76ba437df23e1d7b1b7fa30296
This commit is contained in:
dan
2010-11-29 18:36:22 +00:00
parent 675f85c41c
commit 3239053e69
3 changed files with 8 additions and 8 deletions

View File

@@ -4863,7 +4863,7 @@ static void *unixDlOpen(sqlite3_vfs *NotUsed, const char *zFilename){
** error message.
*/
static void unixDlError(sqlite3_vfs *NotUsed, int nBuf, char *zBufOut){
char *zErr;
const char *zErr;
UNUSED_PARAMETER(NotUsed);
unixEnterMutex();
zErr = dlerror();