summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPo Lu <luangruo@yahoo.com>2023-02-02 10:13:46 +0800
committerPo Lu <luangruo@yahoo.com>2023-02-02 10:13:46 +0800
commit5a3ce490b9a780745db1c86a40419909f87fca2e (patch)
treec920b229ae99d1f0cc0f414c0d826d4ea1e13618 /src
parent7b43566a28c39169915bc85bfecdc1f990ce655b (diff)
Clean up compiler warnings
* src/sfnt.c (sfnt_multiply_divide_signed): Add MAYBE_UNUSED.
Diffstat (limited to 'src')
-rw-r--r--src/sfnt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sfnt.c b/src/sfnt.c
index 7a29ddc755a..9a18e934b26 100644
--- a/src/sfnt.c
+++ b/src/sfnt.c
@@ -3210,7 +3210,7 @@ sfnt_multiply_divide (unsigned int a, unsigned int b, unsigned int c)
/* The same as sfnt_multiply_divide, but handle signed values
instead. */
-static int
+static MAYBE_UNUSED int
sfnt_multiply_divide_signed (int a, int b, int c)
{
int sign;