diff options
| author | Po Lu | 2023-02-02 10:13:46 +0800 |
|---|---|---|
| committer | Po Lu | 2023-02-02 10:13:46 +0800 |
| commit | 5a3ce490b9a780745db1c86a40419909f87fca2e (patch) | |
| tree | c920b229ae99d1f0cc0f414c0d826d4ea1e13618 | |
| parent | 7b43566a28c39169915bc85bfecdc1f990ce655b (diff) | |
| download | emacs-5a3ce490b9a780745db1c86a40419909f87fca2e.tar.gz emacs-5a3ce490b9a780745db1c86a40419909f87fca2e.zip | |
Clean up compiler warnings
* src/sfnt.c (sfnt_multiply_divide_signed): Add MAYBE_UNUSED.
| -rw-r--r-- | src/sfnt.c | 2 |
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) | |||
| 3210 | /* The same as sfnt_multiply_divide, but handle signed values | 3210 | /* The same as sfnt_multiply_divide, but handle signed values |
| 3211 | instead. */ | 3211 | instead. */ |
| 3212 | 3212 | ||
| 3213 | static int | 3213 | static MAYBE_UNUSED int |
| 3214 | sfnt_multiply_divide_signed (int a, int b, int c) | 3214 | sfnt_multiply_divide_signed (int a, int b, int c) |
| 3215 | { | 3215 | { |
| 3216 | int sign; | 3216 | int sign; |