From: Jackson Harper Date: Tue, 13 Apr 2004 17:11:29 +0000 (-0000) Subject: * icall.c: Clairfy out of sync error message. It is not always X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=0fded31482abd8d02ea321eb5c64ab607203de85;p=mono.git * icall.c: Clairfy out of sync error message. It is not always your corlib that is out of sync. svn path=/trunk/mono/; revision=25422 --- diff --git a/mono/metadata/ChangeLog b/mono/metadata/ChangeLog index 69b1e24c17b..2f726fc63f4 100644 --- a/mono/metadata/ChangeLog +++ b/mono/metadata/ChangeLog @@ -1,3 +1,8 @@ +2004-04-13 Jackson Harper + + * icall.c: Clairfy out of sync error message. It is not always + your corlib that is out of sync. + 2004-04-13 Zoltan Varga * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate diff --git a/mono/metadata/icall.c b/mono/metadata/icall.c index 97182fee881..378c4d6c5e8 100644 --- a/mono/metadata/icall.c +++ b/mono/metadata/icall.c @@ -5721,8 +5721,8 @@ mono_lookup_internal_call (MonoMethod *method) } g_warning ("cant resolve internal call to \"%s\" (tested without signature also)", mname); - g_print ("\nYour mono runtime and corlib are out of sync.\n"); - g_print ("Corlib is: %s\n", method->klass->image->name); + g_print ("\nYour mono runtime and class libraries are out of sync.\n"); + g_print ("The out of sync library is: %s\n", method->klass->image->name); g_print ("\nWhen you update one from cvs you need to update, compile and install\nthe other too.\n"); g_print ("Do not report this as a bug unless you're sure you have updated correctly:\nyou probably have a broken mono install.\n"); g_print ("If you see other errors or faults after this message they are probably related\n");