Commit 58e95f72 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

msvcp90: Fix a typo in an FIXME message.

parent 177d8d78
......@@ -471,7 +471,7 @@ typedef struct
int __cdecl _Mtx_init(_Mtx_t *mtx, int flags)
{
if(flags & ~MTX_MULTI_LOCK)
FIXME("unknown flags ignorred: %x\n", flags);
FIXME("unknown flags ignored: %x\n", flags);
*mtx = MSVCRT_operator_new(sizeof(**mtx));
(*mtx)->flags = flags;
......
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