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:
parent
177d8d781f
commit
58e95f7221
|
@ -471,7 +471,7 @@ typedef struct
|
||||||
int __cdecl _Mtx_init(_Mtx_t *mtx, int flags)
|
int __cdecl _Mtx_init(_Mtx_t *mtx, int flags)
|
||||||
{
|
{
|
||||||
if(flags & ~MTX_MULTI_LOCK)
|
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 = MSVCRT_operator_new(sizeof(**mtx));
|
||||||
(*mtx)->flags = flags;
|
(*mtx)->flags = flags;
|
||||||
|
|
Loading…
Reference in New Issue