=== On 2004-06-19, Frank Baumgart wrote === >Nuno Lucas wrote: >> >> ---- os.c, line 836 ----------- >> zDir = (char*)sqlite_temp_directory; >> ------------------------------- > >"const char *zDir;" looks more appropriate to me. > >Frank >
oops, you are right... I take that back, the patch should be on line 828: ---- os.c, line 827 ----------- int i, j; * char *zDir; char zTempPath[SQLITE_TEMPNAME_SIZE]; ------------------------------- should be: ---- os.c, line 828 ----------- const char *zDir; ------------------------------- Thanx for the correction Frank. Regards, ~Nuno Lucas --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

