Module: wine Branch: master Commit: 9f9743364144a90631b71c7aaf5d54531524c2d8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9f9743364144a90631b71c7aaf...
Author: Francois Gouget fgouget@free.fr Date: Sun Sep 28 23:51:59 2014 +0200
d2d1: Add a trailing '\n' to a FIXME().
---
dlls/d2d1/bitmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/d2d1/bitmap.c b/dlls/d2d1/bitmap.c index 10c4296..43c4881 100644 --- a/dlls/d2d1/bitmap.c +++ b/dlls/d2d1/bitmap.c @@ -123,7 +123,7 @@ static HRESULT STDMETHODCALLTYPE d2d_bitmap_CopyFromBitmap(ID2D1Bitmap *iface, static HRESULT STDMETHODCALLTYPE d2d_bitmap_CopyFromRenderTarget(ID2D1Bitmap *iface, const D2D1_POINT_2U *dst_point, ID2D1RenderTarget *render_target, const D2D1_RECT_U *src_rect) { - FIXME("iface %p, dst_point %p, render_target %p, src_rect %p stub!", iface, dst_point, render_target, src_rect); + FIXME("iface %p, dst_point %p, render_target %p, src_rect %p stub!\n", iface, dst_point, render_target, src_rect);
return E_NOTIMPL; }