Use mono_type_full_name to get the type name.

svn path=/trunk/heap-buddy/; revision=51490
This commit is contained in:
Jon Trowbridge 2005-10-09 18:19:12 +00:00
Родитель 52f0a9ced6
Коммит 308d08f570
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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);