Module: wine Branch: master Commit: f8b29a06857e1bf5110648cafde1fe05e0dfd86a URL: http://source.winehq.org/git/wine.git/?a=commit;h=f8b29a06857e1bf5110648cafd...
Author: Eric Pouech eric.pouech@orange.fr Date: Sun Feb 5 22:07:51 2012 +0100
msvcrt: Fix TRACE format modifier for wfreopen.
---
dlls/msvcrt/file.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msvcrt/file.c b/dlls/msvcrt/file.c index cde8a81..b27a40f 100644 --- a/dlls/msvcrt/file.c +++ b/dlls/msvcrt/file.c @@ -3232,7 +3232,7 @@ MSVCRT_FILE* CDECL MSVCRT__wfreopen(const MSVCRT_wchar_t *path, const MSVCRT_wch { int open_flags, stream_flags, fd;
- TRACE(":path (%p) mode (%s) file (%p) fd (%d)\n", debugstr_w(path), debugstr_w(mode), file, file->_file); + TRACE(":path (%s) mode (%s) file (%p) fd (%d)\n", debugstr_w(path), debugstr_w(mode), file, file->_file);
LOCK_FILES(); if (!file || ((fd = file->_file) < 0) || fd > MSVCRT_fdend)