Merge "Revert "Revert "Stop dropping caches now we have kernel fix""" into oc-dev
diff --git a/Ext4Crypt.cpp b/Ext4Crypt.cpp
index 9dfcad8..e40593e 100644
--- a/Ext4Crypt.cpp
+++ b/Ext4Crypt.cpp
@@ -137,7 +137,7 @@
 static std::string keyname(const std::string& raw_ref) {
     std::ostringstream o;
     o << "ext4:";
-    for (auto i : raw_ref) {
+    for (unsigned char i : raw_ref) {
         o << std::hex << std::setw(2) << std::setfill('0') << (int)i;
     }
     return o.str();