[PATCH v2 1/4] gdi32: Fix typo in get_transformed_bbox() trace message.

Huw Davies huw at codeweavers.com
Mon Mar 8 08:37:44 CST 2021


On Mon, Mar 08, 2021 at 02:30:44PM +0000, Huw Davies wrote:
> From: Byeongsik Jeon <bsjeon at hanmail.net>
> 
> Signed-off-by: Byeongsik Jeon <bsjeon at hanmail.net>
> Signed-off-by: Huw Davies <huw at codeweavers.com>
> ---
>  dlls/gdi32/freetype.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c
> index fae4aa94a78..d6cdaa12e98 100644
> --- a/dlls/gdi32/freetype.c
> +++ b/dlls/gdi32/freetype.c
> @@ -2864,7 +2864,7 @@ static FT_BBox get_transformed_bbox( const FT_Glyph_Metrics *metrics,
>              {
>                  vec.x = metrics->horiBearingX + xc * metrics->width;
>                  vec.y = metrics->horiBearingY - yc * metrics->height;
> -                TRACE( "Vec %ld,i %ld\n", vec.x, vec.y );
> +                TRACE( "Vec %ld, %ld\n", vec.x, vec.y );
>                  pFT_Vector_Transform( &vec, &metrices[matrix_vert] );
>                  if (xc == 0 && yc == 0)
>                  {

I've missed the first patch of this series.  I'll send in a v3.
Sorry about that.

Huw.



More information about the wine-devel mailing list