mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-14 10:09:48 +00:00
Pointers dont fit in an int on 64 bit platforms. Fix a gcc warning.
This commit is contained in:
parent
10a498be8f
commit
59a2e5b3fa
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121534
@ -539,7 +539,7 @@ is_section (name, path)
|
||||
|
||||
x = 0;
|
||||
vs = glob_filename (temp);
|
||||
if ((int)vs == -1)
|
||||
if ((intptr_t)vs == -1)
|
||||
{
|
||||
free (temp);
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user