msvcp90: Fix a typo in an FIXME message.

Signed-off-by: Frédéric Delanoy <frederic.delanoy@gmail.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Frédéric Delanoy 2016-05-18 12:10:31 +02:00 committed by Alexandre Julliard
parent 177d8d781f
commit 58e95f7221

View file

@ -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;