]> git.eshelyaron.com Git - emacs.git/commitdiff
Clean up compiler warnings
authorPo Lu <luangruo@yahoo.com>
Thu, 2 Feb 2023 02:13:46 +0000 (10:13 +0800)
committerPo Lu <luangruo@yahoo.com>
Thu, 2 Feb 2023 02:13:46 +0000 (10:13 +0800)
* src/sfnt.c (sfnt_multiply_divide_signed): Add MAYBE_UNUSED.

src/sfnt.c

index 7a29ddc755a18428bf2c946962913a006c2652fb..9a18e934b26d60ed915f8ad8f864ad518d3645ab 100644 (file)
@@ -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;