* icall.c: Clairfy out of sync error message. It is not always
authorJackson Harper <jackson@novell.com>
Tue, 13 Apr 2004 17:11:29 +0000 (17:11 -0000)
committerJackson Harper <jackson@novell.com>
Tue, 13 Apr 2004 17:11:29 +0000 (17:11 -0000)
your corlib that is out of sync.

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

mono/metadata/ChangeLog
mono/metadata/icall.c

index 69b1e24c17b817aa2f9ed40672249167fd9be2d5..2f726fc63f44459b3d8cf7f414db358ae537ba97 100644 (file)
@@ -1,3 +1,8 @@
+2004-04-13  Jackson Harper  <jackson@ximian.com>
+
+       * icall.c: Clairfy out of sync error message. It is not always
+       your corlib that is out of sync.
+
 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
 
        * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
index 97182fee8811d140e77cd0c0153e545f431dabf8..378c4d6c5e8cd8dcf08806b56b7ab7847ceaa39f 100644 (file)
@@ -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");