mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
nix-prefetch-url: Fix regression in hash printing
This commit is contained in:
parent
7480f4f9a4
commit
af4689f9e9
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ static string printHash32(const Hash & hash)
|
|||
|
||||
string printHash16or32(const Hash & hash)
|
||||
{
|
||||
return hash.to_string(hash.type == htMD5 ? Base16 : Base32);
|
||||
return hash.to_string(hash.type == htMD5 ? Base16 : Base32, false);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue