msvcrt: Fix use of uninitialized variable.

oldstable
Peter Beutner 2006-02-17 17:37:14 +01:00 committed by Alexandre Julliard
parent ec24e38ed1
commit 58d3f14514
1 changed files with 1 additions and 1 deletions

View File

@ -803,7 +803,7 @@ __int64 _lseeki64(int fd, __int64 offset, int whence)
}
TRACE(":fd (%d) to %s pos %s\n",
fd,wine_dbgstr_longlong(ofs.QuadPart),
fd,wine_dbgstr_longlong(offset),
(whence==SEEK_SET)?"SEEK_SET":
(whence==SEEK_CUR)?"SEEK_CUR":
(whence==SEEK_END)?"SEEK_END":"UNKNOWN");