Skip to content

Commit 73bf4fb

Browse files
authored
Merge pull request #198 from 0x483d/patch-1
Fixed comparison issue
2 parents 6dc55e6 + 4a25df7 commit 73bf4fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

loki.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ def scan_path(self, path):
346346

347347
# Evaluations -------------------------------------------------------
348348
# Evaluate size
349-
if fileSize > (args.s * 1024):
349+
if fileSize > (int(args.s) * 1024):
350350
# Print files
351351
do_intense_check = False
352352

0 commit comments

Comments
 (0)