Skip to content

Commit

Permalink
chore: make clang-format happy
Browse files Browse the repository at this point in the history
  • Loading branch information
ckerr committed Sep 6, 2022
1 parent 206d5f9 commit 9f7969e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions libtransmission/file-posix.cc
Original file line number Diff line number Diff line change
Expand Up @@ -380,9 +380,10 @@ bool tr_sys_path_copy(char const* src_path, char const* dst_path, tr_error** err
if (copied == -1)
{
errno_cpy = errno; /* remember me for later */
if (errno != EXDEV) { /* EXDEV is expected, don't log error */
if (errno != EXDEV) /* EXDEV is expected, don't log error */
{
set_system_error(error, errno);
}
}
if (file_size > 0U)
{
file_size = info->size; /* restore file_size for next fallback */
Expand Down

0 comments on commit 9f7969e

Please sign in to comment.