aboutsummaryrefslogtreecommitdiffstats
path: root/unmime.c
diff options
context:
space:
mode:
Diffstat (limited to 'unmime.c')
-rw-r--r--unmime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unmime.c b/unmime.c
index e1690c27..5a9841c8 100644
--- a/unmime.c
+++ b/unmime.c
@@ -17,7 +17,7 @@
#include <ctype.h>
#include "fetchmail.h"
-static inline unsigned char unhex(unsigned char c)
+static unsigned char unhex(unsigned char c)
{
if ((c >= '0') && (c <= '9'))
return (c - '0');