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:
@ -31,5 +31,5 @@ truncate64 (path, length)
|
||||
__set_errno (EINVAL);
|
||||
return -1;
|
||||
}
|
||||
return truncate (path, (off_t) length);
|
||||
return __truncate (path, (off_t) length);
|
||||
}
|
||||
|
Reference in New Issue
Block a user