From: "Iván Matellanes" Subject: [2/3] msvcirt: Implement istream::ws Message-Id: <1469095012-6244-2-git-send-email-matellanes.ivan@gmail.com> Date: Thu, 21 Jul 2016 10:56:51 +0100 In-Reply-To: <1469095012-6244-1-git-send-email-matellanes.ivan@gmail.com> References: <1469095012-6244-1-git-send-email-matellanes.ivan@gmail.com> Signed-off-by: Iván Matellanes --- 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 9361d6b..7ea6541 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; } /****************************************************************** -- 2.7.4