summaryrefslogtreecommitdiffstats
path: root/toolkit/components/downloads
diff options
context:
space:
mode:
authortrav90 <travawine@protonmail.ch>2018-08-10 15:21:45 -0500
committertrav90 <travawine@protonmail.ch>2018-08-10 15:21:45 -0500
commit9b48c3fa58c4926341e1668fdfec131ada3147a1 (patch)
tree708b9afdc8fd84dfeafb22327732abeda61a4087 /toolkit/components/downloads
parentf7219526788d3170a5d8de33f7adf13afe38d581 (diff)
downloadUXP-9b48c3fa58c4926341e1668fdfec131ada3147a1.tar
UXP-9b48c3fa58c4926341e1668fdfec131ada3147a1.tar.gz
UXP-9b48c3fa58c4926341e1668fdfec131ada3147a1.tar.lz
UXP-9b48c3fa58c4926341e1668fdfec131ada3147a1.tar.xz
UXP-9b48c3fa58c4926341e1668fdfec131ada3147a1.zip
Remove the const to fix the -Wignored-qualifiers warning with GCC 8 (Part 2)
Diffstat (limited to 'toolkit/components/downloads')
-rw-r--r--toolkit/components/downloads/ApplicationReputation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/components/downloads/ApplicationReputation.cpp b/toolkit/components/downloads/ApplicationReputation.cpp
index 7bd219dbf..1c94d6713 100644
--- a/toolkit/components/downloads/ApplicationReputation.cpp
+++ b/toolkit/components/downloads/ApplicationReputation.cpp
@@ -1000,7 +1000,7 @@ PendingLookup::GetSpecHash(nsACString& aSpec, nsACString& hexEncodedHash)
static const char* const hex = "0123456789ABCDEF";
hexEncodedHash.SetCapacity(2 * binaryHash.Length());
for (size_t i = 0; i < binaryHash.Length(); ++i) {
- auto c = static_cast<const unsigned char>(binaryHash[i]);
+ auto c = static_cast<unsigned char>(binaryHash[i]);
hexEncodedHash.Append(hex[(c >> 4) & 0x0F]);
hexEncodedHash.Append(hex[c & 0x0F]);
}