Commit de1b4489 authored by Jerome Leclanche's avatar Jerome Leclanche Committed by Alexandre Julliard

msvcirt: Make sure a FIXME doesn't overflow.

parent 64144519
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment