gdiplus: Add/fix the trailing '\n' in Wine traces.

This commit is contained in:
Francois Gouget 2008-09-05 13:14:56 +02:00 committed by Alexandre Julliard
parent e1797b530d
commit 758c453ff1
2 changed files with 3 additions and 3 deletions

View File

@ -580,7 +580,7 @@ GpStatus WINGDIPAPI GdipCreateTexture2I(GpImage *image, GpWrapMode wrapmode,
{
GpImageAttributes imageattr;
TRACE("%p %d %d %d %d %d %p", image, wrapmode, x, y, width, height,
TRACE("%p %d %d %d %d %d %p\n", image, wrapmode, x, y, width, height,
texture);
imageattr.wrap = wrapmode;

View File

@ -1441,7 +1441,7 @@ GpStatus WINGDIPAPI GdipDrawImageRectRect(GpGraphics *graphics, GpImage *image,
{
GpPointF points[3];
TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %d, %p, %p, %p)\n)",
TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %d, %p, %p, %p)\n",
graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy,
srcwidth, srcheight, srcUnit, imageattr, callback, callbackData);
@ -1464,7 +1464,7 @@ GpStatus WINGDIPAPI GdipDrawImageRectRectI(GpGraphics *graphics, GpImage *image,
{
GpPointF points[3];
TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n)",
TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n",
graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy,
srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData);