mirror of
https://github.com/vgough/encfs.git
synced 2024-11-25 17:33:19 +01:00
fix clang warning
This commit is contained in:
parent
766564b55f
commit
264f3735d9
@ -1167,7 +1167,7 @@ void showFSInfo(const shared_ptr<EncFSConfig> &config) {
|
||||
if (config->kdfIterations > 0 && config->salt.size() > 0) {
|
||||
cout << autosprintf(_("Using PBKDF2, with %i iterations"),
|
||||
config->kdfIterations) << "\n";
|
||||
cout << autosprintf(_("Salt Size: %i bits"), 8 * config->salt.size()) << "\n";
|
||||
cout << autosprintf(_("Salt Size: %i bits"), (int)(8 * config->salt.size())) << "\n";
|
||||
}
|
||||
if (config->blockMACBytes || config->blockMACRandBytes) {
|
||||
if (config->subVersion < 20040813) {
|
||||
|
Loading…
Reference in New Issue
Block a user