diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-05-10 23:38:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-05-10 23:38:33 +0000 |
commit | b29899ae10cde6fd5f79ed3c3b1afe041d418bf0 (patch) | |
tree | 20bc6ddd900be34e75a3b5a49230cc23590ac6e0 /misc | |
parent | c5ee217f0903f0f3227ed09f0ac07d8a3f36d8b7 (diff) |
* misc/truncate64.c (truncate64): Use __truncate not truncate.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/truncate64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/truncate64.c b/misc/truncate64.c index d7e80dc3ae..4a8a540745 100644 --- a/misc/truncate64.c +++ b/misc/truncate64.c @@ -31,5 +31,5 @@ truncate64 (path, length) __set_errno (EINVAL); return -1; } - return truncate (path, (off_t) length); + return __truncate (path, (off_t) length); } |