mirror of
https://github.com/NixOS/nix
synced 2025-06-27 00:11:17 +02:00
Fixed build, we still have test errors
This commit is contained in:
parent
b798efb829
commit
c2e7f7a712
3 changed files with 34 additions and 18 deletions
|
@ -1433,7 +1433,7 @@ string base64Decode(std::string_view s)
|
|||
|
||||
char digit = decode[(unsigned char) c];
|
||||
if (digit == -1)
|
||||
throw Error("invalid character in Base64 string");
|
||||
throw Error("invalid character in Base64 string: '%c'", c);
|
||||
|
||||
bits += 6;
|
||||
d = d << 6 | digit;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue