From 681e905b6e319baaa352f342a0ffa476b3242b58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Matellanes?= Date: Thu, 21 Jul 2016 10:56:51 +0100 Subject: [PATCH] msvcirt: Implement istream::ws. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Iván Matellanes Signed-off-by: Piotr Caban Signed-off-by: Alexandre Julliard --- dlls/msvcirt/msvcirt.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dlls/msvcirt/msvcirt.c b/dlls/msvcirt/msvcirt.c index 9361d6bc9eb..7ea6541992c 100644 --- a/dlls/msvcirt/msvcirt.c +++ b/dlls/msvcirt/msvcirt.c @@ -3546,8 +3546,9 @@ int __thiscall istream_getdouble(istream *this, char *str, int count) /* ?ws@@YAAEAVistream@@AEAV1@@Z */ istream* __cdecl istream_ws(istream *this) { - FIXME("(%p) stub\n", this); - return this; + TRACE("(%p)\n", this); + istream_eatwhite(this); + return this; } /******************************************************************