From 03a140499d824fd0e93c8a199f863ad7f7038e22 Mon Sep 17 00:00:00 2001 From: Anthony Kirkpatrick Date: Tue, 7 Jan 2025 15:01:53 -0500 Subject: [PATCH] fix warning text for bad sxHeight --- src/os2.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os2.cc b/src/os2.cc index 5376a1db..60bb005d 100644 --- a/src/os2.cc +++ b/src/os2.cc @@ -209,7 +209,7 @@ bool OpenTypeOS2::Parse(const uint8_t *data, size_t length) { } if (this->table.x_height < 0) { - Warning("Bad sxHeight settig it to 0: %d", this->table.x_height); + Warning("Bad sxHeight setting it to 0: %d", this->table.x_height); this->table.x_height = 0; } if (this->table.cap_height < 0) {