Module: wine Branch: master Commit: 681e905b6e319baaa352f342a0ffa476b3242b58 URL: http://source.winehq.org/git/wine.git/?a=commit;h=681e905b6e319baaa352f342a0...
Author: Iván Matellanes matellanesivan@gmail.com Date: Thu Jul 21 10:56:51 2016 +0100
msvcirt: Implement istream::ws.
Signed-off-by: Iván Matellanes matellanes.ivan@gmail.com Signed-off-by: Piotr Caban piotr@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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; }
/******************************************************************