Skip to content

Commit c4d8027

Browse files
authored
Missing parenthesis
1 parent 67c3752 commit c4d8027

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Common/Base32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ struct Base32<Traits, Base32NaiveTag>
6767

6868
if (bits_left > 0)
6969
{
70-
dst[opos++] = Traits::encodeChar(buffer << (5 - bits_left)) & 0x1F);
70+
dst[opos++] = Traits::encodeChar((buffer << (5 - bits_left)) & 0x1F);
7171
}
7272

7373
while (opos % 8 != 0)

0 commit comments

Comments
 (0)