Fix a typo

This commit is contained in:
Akira TAGOH 2012-12-06 19:49:05 +09:00
parent 9231545c6b
commit 959442bca1
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ FcFileIsLink (const FcChar8 *file)
#if HAVE_LSTAT
struct stat statb;
if (lstat (file, &statb) != 0)
if (lstat ((const char *)file, &statb) != 0)
return FcFalse;
return S_ISLNK (statb.st_mode);
#else