diff options
Diffstat (limited to 'contrib/dict_xsyn/dict_xsyn.c')
-rw-r--r-- | contrib/dict_xsyn/dict_xsyn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/dict_xsyn/dict_xsyn.c b/contrib/dict_xsyn/dict_xsyn.c index a6b413bb554..3c05a1ea908 100644 --- a/contrib/dict_xsyn/dict_xsyn.c +++ b/contrib/dict_xsyn/dict_xsyn.c @@ -69,7 +69,7 @@ find_word(char *in, char **end) static int compare_syn(const void *a, const void *b) { - return strcmp(((Syn *) a)->key, ((Syn *) b)->key); + return strcmp(((const Syn *) a)->key, ((const Syn *) b)->key); } static void |