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

Fix a typo in os_win.c. Ticket #2055. (CVS 3504)

FossilOrigin-Name: d309680ec7a806d181b601e0105aebf1e33bfb81
This commit is contained in:
drh
2006-11-07 15:02:07 +00:00
parent 551b77365e
commit f4fa85826f
3 changed files with 8 additions and 8 deletions

View File

@@ -997,7 +997,7 @@ static int winRead(OsFile *id, void *pBuf, int amt){
}
if( got==(DWORD)amt ){
return SQLITE_OK;
}else if( goc<0 ){
}else if( got<0 ){
return SQLITE_IOERR_READ;
}else{
return SQLITE_IOERR_SHORT_READ;