summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--src/type42/t42parse.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c58d883ae..9a577127f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2020-12-01 Werner Lemberg <wl@gnu.org>
+
+ * src/type42/t42parse.c: Fix `-Wformat` warnings.
+
2020-12-01 Priyesh Kumar <priyeshkkumar@gmail.com>
[builds/unix] Check for 'pthread' library.
diff --git a/src/type42/t42parse.c b/src/type42/t42parse.c
index 88877dd26..d9a5e4c1c 100644
--- a/src/type42/t42parse.c
+++ b/src/type42/t42parse.c
@@ -683,7 +683,7 @@
goto Fail;
}
- FT_TRACE2(( " PS string size %5lu bytes, offset 0x%08x (%lu)\n",
+ FT_TRACE2(( " PS string size %5lu bytes, offset 0x%08lx (%lu)\n",
string_size, count, count ));
/* The whole TTF is now loaded into `string_buf'. We are */
@@ -746,7 +746,7 @@
len = FT_PEEK_ULONG( p );
- FT_TRACE2(( " %4i 0x%08x (%lu)\n", i, len, len ));
+ FT_TRACE2(( " %4i 0x%08lx (%lu)\n", i, len, len ));
if ( len > size ||
face->ttf_size > (FT_Long)( size - len ) )