Commit 58d3f145 authored by Peter Beutner's avatar Peter Beutner Committed by Alexandre Julliard

msvcrt: Fix use of uninitialized variable.

parent ec24e38e
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment