1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

unix,fs: silence -Wunused-result warning (#4496)

This commit is contained in:
Santiago Gimeno 2024-08-10 11:08:39 +02:00 committed by GitHub
parent c84a2dbe03
commit a53e7877e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1338,9 +1338,10 @@ static ssize_t uv__fs_copyfile(uv_fs_t* req) {
/*
* Change the ownership and permissions of the destination file to match the
* source file.
* `cp -p` does not care about errors here, so we don't either.
* `cp -p` does not care about errors here, so we don't either. Reuse the
* `result` variable to silence a -Wunused-result warning.
*/
fchown(dstfd, src_statsbuf.st_uid, src_statsbuf.st_gid);
result = fchown(dstfd, src_statsbuf.st_uid, src_statsbuf.st_gid);
if (fchmod(dstfd, src_statsbuf.st_mode) == -1) {
err = UV__ERR(errno);