Module: wine Branch: master Commit: de1b44892d3e85ceffbb65fd71d43a801d8e0949 URL: http://source.winehq.org/git/wine.git/?a=commit;h=de1b44892d3e85ceffbb65fd71...
Author: Jerome Leclanche adys.wh@gmail.com Date: Sat Oct 31 21:13:49 2009 +0200
msvcirt: Make sure a FIXME doesn't overflow.
---
dlls/msvcirt/msvcirt.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msvcirt/msvcirt.c b/dlls/msvcirt/msvcirt.c index a498662..924e84c 100644 --- a/dlls/msvcirt/msvcirt.c +++ b/dlls/msvcirt/msvcirt.c @@ -68,7 +68,7 @@ void * __stdcall MSVCIRT_operator_sl_int(class_ostream * _this, int integer) DEFINE_THISCALL_WRAPPER(MSVCIRT_operator_sl_pchar,8) void * __stdcall MSVCIRT_operator_sl_pchar(class_ostream * _this, const char * string) { - FIXME("(%p)->(%s) stub\n", _this, string); + FIXME("(%p)->(%s) stub\n", _this, debugstr_a(string)); return _this; }