Work on heap and space initialization to support image loading

Change-Id: Icab25efa4dee17e4b6c6e97e38f63f5ab8a8a005
diff --git a/src/dex_file.cc b/src/dex_file.cc
index 22e4430..b9ae7e3 100644
--- a/src/dex_file.cc
+++ b/src/dex_file.cc
@@ -35,7 +35,7 @@
       return ClassPathEntry(dex_file, dex_class_def);
     }
   }
-  // TODO remove reinterpret_cast when issue with -std=gnu++0x host issue resolved
+  // TODO: remove reinterpret_cast when issue with -std=gnu++0x host issue resolved
   return ClassPathEntry(reinterpret_cast<const DexFile*>(NULL),
                         reinterpret_cast<const DexFile::ClassDef*>(NULL));
 }
@@ -257,7 +257,7 @@
       return NULL;
     }
 
-    // TODO restat and check length against zip_entry->GetUncompressedLength()?
+    // TODO: restat and check length against zip_entry->GetUncompressedLength()?
 
     // Compute checksum and compare to zip. If things look okay, rename from tmp.
     off_t lseek_result = lseek(fd->GetFd(), 0, SEEK_SET);