Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorthez3ro <io@thezero.org>2017-01-27 22:39:32 +0300
committerthez3ro <io@thezero.org>2017-01-27 22:39:32 +0300
commit0f44f6752efe030dd9b18f43460505569e13257f (patch)
treec48d91273f2abcaba142cf273eb4b2f7b120877c /utils
parent61379d4e05a6470c8fcf1432adc000b1a24fc2cd (diff)
Fix entropy_meter script
Diffstat (limited to 'utils')
-rw-r--r--utils/entropy-meter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/entropy-meter.cpp b/utils/entropy-meter.cpp
index a5e6e50e9..74f6bc11a 100644
--- a/utils/entropy-meter.cpp
+++ b/utils/entropy-meter.cpp
@@ -101,9 +101,10 @@ int main(int argc, char **argv)
break;
}
}
- if (line[0])
+ if (line[0]) {
calculate(line,advanced);
printf("> ");
+ }
}
}
else