From ca372c23c9bba87d956ed74bb16652b1354b9ee2 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Fri, 18 Mar 2016 23:39:13 -0500 Subject: [PATCH] bandb: embedded sqlite3: fix build on cygwin --- bandb/sqlite3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bandb/sqlite3.c b/bandb/sqlite3.c index 60cbc77f..8716889c 100644 --- a/bandb/sqlite3.c +++ b/bandb/sqlite3.c @@ -25168,7 +25168,7 @@ winFullPathname(sqlite3_vfs * pVfs, /* Pointer to vfs object */ { #if defined(__CYGWIN__) - cygwin_conv_to_full_win32_path(zRelative, zFull); + cygwin_conv_path(CCP_POSIX_TO_WIN_A, zRelative, zFull, nFull); return SQLITE_OK; #endif