From: Iván Matellanes Subject: [6/9] msvcirt: Implement stdiobuf::stdiofile Message-Id: <1443791007-29648-6-git-send-email-matellanesivan@gmail.com> Date: Fri, 2 Oct 2015 15:03:24 +0200 In-Reply-To: <1443791007-29648-1-git-send-email-matellanesivan@gmail.com> References: <1443791007-29648-1-git-send-email-matellanesivan@gmail.com> Signed-off-by: Iván Matellanes --- dlls/msvcirt/msvcirt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msvcirt/msvcirt.c b/dlls/msvcirt/msvcirt.c index 602ab77..1d915fa 100644 --- a/dlls/msvcirt/msvcirt.c +++ b/dlls/msvcirt/msvcirt.c @@ -1589,8 +1589,8 @@ int __thiscall stdiobuf_setrwbuf(stdiobuf *this, int read_size, int write_size) DEFINE_THISCALL_WRAPPER(stdiobuf_stdiofile, 4) FILE* __thiscall stdiobuf_stdiofile(stdiobuf *this) { - FIXME("(%p) stub\n", this); - return NULL; + TRACE("(%p)\n", this); + return this->file; } /* ?sync@stdiobuf@@UAEHXZ */ -- 2.1.4