Keep trying to guess the 10.5 vmmap(1) syntax...

Change-Id: I960e33e0b97e9f7f52b815af3fbed4e2557a5225
diff --git a/src/mem_map.cc b/src/mem_map.cc
index 6bc37ee..9943343 100644
--- a/src/mem_map.cc
+++ b/src/mem_map.cc
@@ -74,7 +74,7 @@
   // ...
 
   // TODO: the -v option replaces "-w -resident -dirty -purge -submap -allSplitLibs -noCoalesce" >= 10.6.
-  std::string command(StringPrintf("vmmap -w -resident -submap -allSplitLibs -noCoalesce -interleaved %d", getpid()));
+  std::string command(StringPrintf("vmmap -w -resident -submap -allSplitLibs -interleaved %d", getpid()));
   FILE* fp = popen(command.c_str(), "r");
   if (fp == NULL) {
     PLOG(FATAL) << "popen failed";