From: Huw Davies Subject: Re: wineps.drv: Use wine_dbgstr_rect() to trace RECTs. Message-Id: <20160428094526.GA3232@merlot.physics.ox.ac.uk> Date: Thu, 28 Apr 2016 10:45:26 +0100 In-Reply-To: <20160426184816.GA10124@redhat.com> References: <20160426184816.GA10124@redhat.com> Signed-off-by: Huw Davies On Tue, Apr 26, 2016 at 08:48:16PM +0200, Michael Stefaniuc wrote: > --- a/dlls/wineps.drv/init.c > +++ b/dlls/wineps.drv/init.c > @@ -331,9 +331,7 @@ static void PSDRV_UpdateDevCaps( PSDRV_PDEVICE *physDev ) > physDev->PageSize.cy = 0; > } > > - TRACE("ImageableArea = %d,%d - %d,%d: PageSize = %dx%d\n", > - physDev->ImageableArea.left, physDev->ImageableArea.bottom, > - physDev->ImageableArea.right, physDev->ImageableArea.top, > + TRACE("ImageableArea = %s: PageSize = %dx%d\n", wine_dbgstr_rect(&physDev->ImageableArea), > physDev->PageSize.cx, physDev->PageSize.cy); If you hadn't just removed wine_dbgstr_size(), you could have used that here too ;-) Huw.