1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

* misc/truncate64.c (truncate64): Use __truncate not truncate.

This commit is contained in:
Ulrich Drepper
2008-05-10 23:38:33 +00:00
parent c5ee217f09
commit b29899ae10
3 changed files with 9 additions and 2 deletions

View File

@ -31,5 +31,5 @@ truncate64 (path, length)
__set_errno (EINVAL);
return -1;
}
return truncate (path, (off_t) length);
return __truncate (path, (off_t) length);
}