Skip to content

Commit 14955bf

Browse files
authored
Merge pull request #689 from NotRequiem/main
x86_32 compatibility for new detections and timing attack improvements
2 parents d368e74 + a8f40a7 commit 14955bf

2 files changed

Lines changed: 184 additions & 344 deletions

File tree

src/cli.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1160,7 +1160,7 @@ static void general(
11601160
if (char_count <= 60) {
11611161
continue;
11621162
} else {
1163-
if ((char_count - 1) >= (static_cast<unsigned long long>(max_line_length) + 3)) {
1163+
if ((static_cast<unsigned long long>(char_count) - 1) >= (static_cast<unsigned long long>(max_line_length) + 3)) {
11641164
it = divided_description.insert(it + 1, "\n");
11651165
char_count = it->length() + 1;
11661166
} else {

0 commit comments

Comments
 (0)