Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 04e11bc

Browse files
[[ Bug 14413 ]] Use bitwise comparison, instead of boolean one
1 parent 6a6c555 commit 04e11bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

revzip/src/revzip.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1285,7 +1285,7 @@ void revZipEnumerateItems(char *p_arguments[], int p_argument_count, char **r_re
12851285
const char *t_converted_name;
12861286
int t_success;
12871287

1288-
if (t_stat.bitflags && ZIP_UTF8_FLAG)
1288+
if (t_stat.bitflags & ZIP_UTF8_FLAG)
12891289
{
12901290
t_success = EXTERNAL_SUCCESS;
12911291
t_converted_name = t_stat.name;

0 commit comments

Comments
 (0)