mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-04 19:08:23 +00:00
file-operations: Fix incorrect operation
The ternary operator has lower precedence than bitwise or and thus had made the expression a tautology.
This commit is contained in:
parent
78e22d0448
commit
9edcd430c3
1 changed files with 1 additions and 1 deletions
|
@ -7222,7 +7222,7 @@ retry:
|
|||
res = g_file_copy (job->src,
|
||||
dest,
|
||||
G_FILE_COPY_TARGET_DEFAULT_PERMS |
|
||||
job->new_mtime ? G_FILE_COPY_TARGET_DEFAULT_MODIFIED_TIME : 0,
|
||||
(job->new_mtime ? G_FILE_COPY_TARGET_DEFAULT_MODIFIED_TIME : 0),
|
||||
common->cancellable,
|
||||
NULL, NULL,
|
||||
&error);
|
||||
|
|
Loading…
Reference in a new issue