Add missing \n on error message.

oldstable
Robert Shearman 2004-01-06 20:40:48 +00:00 committed by Alexandre Julliard
parent 2050c469ef
commit 30a520e235
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ static HQUEUE16 QUEUE_CreateMsgQueue(void)
SERVER_END_REQ;
if (!handle)
{
ERR_(msg)("Cannot get thread queue");
ERR_(msg)("Cannot get thread queue\n");
GlobalFree16( hQueue );
return 0;
}