More wordsize fixes

This commit is contained in:
Ard Biesheuvel 2004-03-08 23:11:45 +00:00
parent f1ff65c155
commit b303ba089c
8 changed files with 14 additions and 13 deletions

View file

@ -856,7 +856,7 @@ void sqlite_progress_handler(
** This routine installs a default busy handler that waits for the
** specified number of milliseconds before returning 0.
*/
void sqlite_busy_timeout(sqlite *db, int ms){
void sqlite_busy_timeout(sqlite *db, long ms){
if( ms>0 ){
sqlite_busy_handler(db, sqliteDefaultBusyCallback, (void*)ms);
}else{