diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2017-08-04 14:22:30 +0100 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2017-08-04 14:23:10 +0100 |
commit | 8b2910319610c90dcba021788b0739cf627c3ade (patch) | |
tree | dedd0951a688d4c6259c099434577439ed27e896 /src | |
parent | 484cb300eadf54a1e2248f8bd4e7717d6d3f7d31 (diff) |
Fix warning
Diffstat (limited to 'src')
-rw-r--r-- | src/fclang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fclang.c b/src/fclang.c index 1eee8ef9..fc0620c4 100644 --- a/src/fclang.c +++ b/src/fclang.c @@ -351,7 +351,7 @@ FcLangCompare (const FcChar8 *s1, const FcChar8 *s2) { FcChar8 c1, c2; FcLangResult result = FcLangDifferentLang; - FcChar8 *s1_orig = s1; + const FcChar8 *s1_orig = s1; FcBool is_und; is_und = FcToLower (s1[0]) == 'u' && |