diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2016-07-01 08:19:10 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2016-07-01 08:19:10 +0000 |
commit | 796d7b5077684dbd16d00a903073029b10ebdeaf (patch) | |
tree | 2d92a33eaa9cf93e59adbb6fe9ce2f9bbef23c4c /Build/source/texk/kpathsea/knj.c | |
parent | 921a3e8f4239204f9d81e3024a4c664e48d69186 (diff) |
kpathsea: Avoid compiler warnings
git-svn-id: svn://tug.org/texlive/trunk@41586 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/knj.c')
-rw-r--r-- | Build/source/texk/kpathsea/knj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/knj.c b/Build/source/texk/kpathsea/knj.c index b5658f76671..09d718ce8e2 100644 --- a/Build/source/texk/kpathsea/knj.c +++ b/Build/source/texk/kpathsea/knj.c @@ -517,7 +517,7 @@ kpathsea_win32_putc(kpathsea kpse, int c, FILE *fp) } int -kpathsea_IS_KANJI(kpathsea kpse, char *p) +kpathsea_IS_KANJI(kpathsea kpse, const char *p) { int ret; @@ -625,7 +625,7 @@ win32_putc(int c, FILE *fp) } int -IS_KANJI(char *p) +IS_KANJI(const char *p) { return kpathsea_IS_KANJI(kpse_def, p); } |