From ea953271deaeb558650ac349311cc13620f038a9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Iv=C3=A1n=20Matellanes?= Date: Thu, 17 Sep 2015 11:06:52 +0200 Subject: [PATCH] msvcirt: Implement strstreambuf::sync. --- 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 0ea4030fe8f..c6e67dc36e8 100644 --- a/dlls/msvcirt/msvcirt.c +++ b/dlls/msvcirt/msvcirt.c @@ -1371,8 +1371,8 @@ char* __thiscall strstreambuf_str(strstreambuf *this) DEFINE_THISCALL_WRAPPER(strstreambuf_sync, 4) int __thiscall strstreambuf_sync(strstreambuf *this) { - FIXME("(%p) stub\n", this); - return EOF; + TRACE("(%p)\n", this); + return 0; } /* ?underflow@strstreambuf@@UAEHXZ */ -- 2.11.4.GIT