ntdll: Add a trailing '\n' to a FIXME() trace.

This commit is contained in:
Francois Gouget 2015-08-07 11:55:51 +02:00 committed by Alexandre Julliard
parent 6970d65887
commit e0e2ee3487
1 changed files with 1 additions and 1 deletions

View File

@ -2252,7 +2252,7 @@ NTSTATUS WINAPI TpAllocPool( TP_POOL **out, PVOID reserved )
TRACE( "%p %p\n", out, reserved );
if (reserved)
FIXME( "reserved argument is nonzero (%p)", reserved );
FIXME( "reserved argument is nonzero (%p)\n", reserved );
return tp_threadpool_alloc( (struct threadpool **)out );
}