Merge "Fix incorrect memcmp in RSInfoReader."
diff --git a/lib/Renderscript/RSInfoReader.cpp b/lib/Renderscript/RSInfoReader.cpp
index fe5626a..95bd09a 100644
--- a/lib/Renderscript/RSInfoReader.cpp
+++ b/lib/Renderscript/RSInfoReader.cpp
@@ -219,7 +219,7 @@
   // Check the version.
   if (::memcmp(header->version,
                RSINFO_VERSION,
-               sizeof((header->version)) != 0)) {
+               sizeof(header->version)) != 0) {
     ALOGV("Mismatch the version of RS info file %s: (current) %s v.s. (file) "
           "%s. Treat it as as a dirty cache.", input_filename, RSINFO_VERSION,
           header->version);