aboutsummaryrefslogtreecommitdiff
path: root/src/inspstring.cpp
diff options
context:
space:
mode:
authorGravatar Dominic Hamon2021-05-30 20:37:54 +0100
committerGravatar GitHub2021-05-30 20:37:54 +0100
commit02340285c564a7e82105137192d46d554a6fce3a (patch)
tree696d1a6249841de62c3fed70310c2a347fc66732 /src/inspstring.cpp
parentAdd a workaround for a bug in GitHub Actions. (diff)
Added -Wshorten-64-to-32 and fixed all warnings.
Diffstat (limited to 'src/inspstring.cpp')
-rw-r--r--src/inspstring.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspstring.cpp b/src/inspstring.cpp
index e65e3918f..c2e1f4a4d 100644
--- a/src/inspstring.cpp
+++ b/src/inspstring.cpp
@@ -171,7 +171,7 @@ std::string Base64::Decode(const void* data, size_t length, const char* table)
continue; // Skip invalid octets.
// Add the bits for this octet to the active buffer.
- current_bits = (current_bits << 6) | (chr - table);
+ current_bits = (current_bits << 6) | uint32_t(chr - table);
seen_bits += 6;
if (seen_bits >= 8)