diff options
author | rbuj <[email protected]> | 2020-12-29 22:11:29 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-01-28 21:09:37 +0100 |
commit | f343f45b504c6dd78736a505a7865a2cc3d353ed (patch) | |
tree | 2332d5c1b0c99e49317dc40d1dcc13fe06c90644 /src/eom-image.c | |
parent | 7cd5fe838cfe53c06827377ab05530095ef69325 (diff) | |
download | eom-f343f45b504c6dd78736a505a7865a2cc3d353ed.tar.bz2 eom-f343f45b504c6dd78736a505a7865a2cc3d353ed.tar.xz |
Remove cppcheck warning knownConditionTrueFalse
Diffstat (limited to 'src/eom-image.c')
-rw-r--r-- | src/eom-image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eom-image.c b/src/eom-image.c index cbcf126..cc667a8 100644 --- a/src/eom-image.c +++ b/src/eom-image.c @@ -1948,7 +1948,7 @@ eom_image_get_caption (EomImage *img) /* Guaranteed to be correct utf8 here */ validated = TRUE; } - } else if (!broken_filenames) { + } else { /* name was valid, no need to re-validate */ validated = TRUE; } |