1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-01 12:19:28 +00:00

Remove pad argument from ftruncate wrapper. Oops.

Approved by: re (kensmith)
This commit is contained in:
Peter Wemm 2007-07-05 05:32:44 +00:00
parent 8705c3d30b
commit b811e070b4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=171227

View File

@ -102,7 +102,6 @@ xenix_chsize(td, uap)
DPRINTF(("IBCS2: 'xenix chsize'\n"));
sa.fd = uap->fd;
sa.pad = 0;
sa.length = uap->size;
return ftruncate(td, &sa);
}