End() should check if remaining_count_ == -1, instead of checking negative.

Change-Id: I4b0e113f48902a4056d07bdcc2ffdba90d7fde7b
diff --git a/src/dex_file.h b/src/dex_file.h
index 373ec51..b0b38d0 100644
--- a/src/dex_file.h
+++ b/src/dex_file.h
@@ -243,7 +243,7 @@
       }
 
       bool End() const {
-        return remaining_count_ < 0 && catch_all_ == false;
+        return remaining_count_ == -1 && catch_all_ == false;
       }
 
     private: