From 308d08f57029ad11b112e6fdb0fee5b31df3be62 Mon Sep 17 00:00:00 2001 From: Jon Trowbridge Date: Sun, 9 Oct 2005 18:19:12 +0000 Subject: [PATCH] Use mono_type_full_name to get the type name. svn path=/trunk/heap-buddy/; revision=51490 --- profiler/outfile-writer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/outfile-writer.c b/profiler/outfile-writer.c index fd3feb0..e688a89 100644 --- a/profiler/outfile-writer.c +++ b/profiler/outfile-writer.c @@ -173,7 +173,7 @@ outfile_writer_add_accountant (OutfileWriter *ofw, /* 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);