2003-12-19 Zoltan Varga <vargaz@freemail.hu>
authorZoltan Varga <vargaz@gmail.com>
Fri, 19 Dec 2003 21:03:29 +0000 (21:03 -0000)
committerZoltan Varga <vargaz@gmail.com>
Fri, 19 Dec 2003 21:03:29 +0000 (21:03 -0000)
* dump.c (dump_table_exported): Fix output.

svn path=/trunk/mono/; revision=21365

mono/dis/ChangeLog
mono/dis/dump.c

index c65e90a6abd3814921e98dff578598cafecb7022..8793d835527e55ef980f5888a9803cb4ed7907f3 100644 (file)
@@ -1,3 +1,7 @@
+2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
+
+       * dump.c (dump_table_exported): Fix output.
+
 2003-12-08  Jackson Harper <jackson@ximian.com>
 
        * main.cs: escape module names.
index c518f528e39eee7dd3e7f2f0db6961165441181d..5678866830d6a19b639adab85cab57d75b8f1fcf 100644 (file)
@@ -937,7 +937,7 @@ dump_table_exported (MonoImage *m)
                nspace = mono_metadata_string_heap (m, cols [MONO_EXP_TYPE_NAMESPACE]);
                impl = get_manifest_implementation (m, cols [MONO_EXP_TYPE_IMPLEMENTATION]);
                index = cols [MONO_EXP_TYPE_TYPEDEF];
-               fprintf (output, "%d: %s-%s%s is in %s, token %x\n", i, nspace, *nspace ? "." : "", name, impl, index);
+               fprintf (output, "%d: %s%s%s is in %s, token %x\n", i, nspace, *nspace ? "." : "", name, impl, index);
                g_free (impl);
        }