Fix a typo
This commit is contained in:
parent
9231545c6b
commit
959442bca1
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue