Author: trow
Date: 2005-10-09 14:19:12 -0400 (Sun, 09 Oct 2005)
New Revision: 51490

Modified:
   trunk/heap-buddy/profiler/outfile-writer.c
Log:
Use mono_type_full_name to get the type name.


Modified: trunk/heap-buddy/profiler/outfile-writer.c
===================================================================
--- trunk/heap-buddy/profiler/outfile-writer.c  2005-10-09 16:18:29 UTC (rev 
51489)
+++ trunk/heap-buddy/profiler/outfile-writer.c  2005-10-09 18:19:12 UTC (rev 
51490)
@@ -173,7 +173,7 @@
 
         /* First, add this type if we haven't seen it before. */
         if (g_hash_table_lookup (ofw->seen_items, acct->klass) == NULL) {
-                name = mono_type_get_full_name (mono_class_get_type 
(acct->klass));
+                name = mono_type_full_name (mono_class_get_type (acct->klass));
                 write_byte (ofw->out, TAG_TYPE);
                 write_pointer (ofw->out, acct->klass);
                 write_string (ofw->out, name);

_______________________________________________
Mono-patches maillist  -  Mono-patches@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to