For PDB stats printing, don't print the number of inl-info records,
since it's always zero.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14943 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/m_debuginfo/debuginfo.c b/coregrind/m_debuginfo/debuginfo.c
index ce37e5f..5d235ac 100644
--- a/coregrind/m_debuginfo/debuginfo.c
+++ b/coregrind/m_debuginfo/debuginfo.c
@@ -1411,10 +1411,8 @@
 
      if (VG_(clo_verbosity) > 0) {
         VG_(message)(Vg_UserMsg, "LOAD_PDB_DEBUGINFO: done:    "
-                                 "%lu syms, %lu src locs, "
-                                 "%lu src locs, %lu fpo recs\n",
-                     di->symtab_used, di->loctab_used, 
-                     di->inltab_used, di->fpo_size);
+                                 "%lu syms, %lu src locs, %lu fpo recs\n",
+                     di->symtab_used, di->loctab_used, di->fpo_size);
      }
    }