Add a possible cause to the error message when one of the classes for superclass lookup cannot be found

git-svn-id: https://smali.googlecode.com/svn/trunk@486 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2009-11-08 06:59:55 +00:00
parent 3cf2781481
commit 6de675fc3d

View File

@ -642,7 +642,7 @@ int main(int argc, char* const argv[])
if (clazz1 == NULL)
{
fprintf(clientOut, "err: class %s could not be found for common superclass lookup\n", classType1);
fprintf(clientOut, "err: class %s could not be found for common superclass lookup. This can be caused if a library the odex depends on is not in the BOOTCLASSPATH environment variable\n", classType1);
fflush(clientOut);
break;
}