Commit e0e2ee34 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 6970d658
...@@ -2252,7 +2252,7 @@ NTSTATUS WINAPI TpAllocPool( TP_POOL **out, PVOID reserved ) ...@@ -2252,7 +2252,7 @@ NTSTATUS WINAPI TpAllocPool( TP_POOL **out, PVOID reserved )
TRACE( "%p %p\n", out, reserved ); TRACE( "%p %p\n", out, reserved );
if (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 ); return tp_threadpool_alloc( (struct threadpool **)out );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment