Fixed copy paste error in MessagePipe.c

This commit is contained in:
qarmin
2020-05-01 19:25:22 +02:00
committed by akallabeth
parent ff618f53f7
commit ceec2cf1a0

View File

@@ -58,7 +58,7 @@ wMessagePipe* MessagePipe_New()
goto error_in;
pipe->Out = MessageQueue_New(NULL);
if (!pipe->In)
if (!pipe->Out)
goto error_out;
return pipe;