libc: fix build after r356830

Apparently building with 'cd lib/libc; make all install' is not the same
as buildworld.

Reported by:	Michael Butler
This commit is contained in:
Mateusz Guzik 2020-01-17 15:45:39 +00:00
parent e07530d2df
commit 909107075c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=356832

View File

@ -279,7 +279,7 @@ is_unionstack(int fd)
struct statfs sfb;
int unionstack;
unionstack = _fcntl(fd, F_ISUNIONSTACK);
unionstack = _fcntl(fd, F_ISUNIONSTACK, 0);
if (unionstack != -1)
return (unionstack);