Suppress some compiler warnings due to signedness.

Change-Id: I63f28b3b4ba4185c23b972fc8f93517295b1672a
diff --git a/updater/install.cpp b/updater/install.cpp
index a6ed078..68c9902 100644
--- a/updater/install.cpp
+++ b/updater/install.cpp
@@ -990,7 +990,7 @@
         goto done;
     }
 
-    if (fread(buffer, 1, st.st_size, f) != st.st_size) {
+    if (fread(buffer, 1, st.st_size, f) != static_cast<size_t>(st.st_size)) {
         ErrorAbort(state, "%s: failed to read %lld bytes from %s",
                    name, (long long)st.st_size+1, filename);
         fclose(f);