summaryrefslogtreecommitdiff
path: root/xps/xps_hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'xps/xps_hash.c')
-rw-r--r--xps/xps_hash.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/xps/xps_hash.c b/xps/xps_hash.c
index c0df8c1c..c750717a 100644
--- a/xps/xps_hash.c
+++ b/xps/xps_hash.c
@@ -30,8 +30,7 @@ struct xps_hash_table_s
xps_hash_entry *entries;
};
-static inline int
-xps_tolower(int c)
+static inline int xps_tolower(int c)
{
if (c >= 'A' && c <= 'Z')
return c + 32;