From 6de675fc3de42cd08fa1e1fd43a309dd66f5fcba Mon Sep 17 00:00:00 2001 From: "JesusFreke@JesusFreke.com" Date: Sun, 8 Nov 2009 06:59:55 +0000 Subject: [PATCH] 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 --- deodexerant/Main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deodexerant/Main.c b/deodexerant/Main.c index 45294b0f..4a03bdfc 100644 --- a/deodexerant/Main.c +++ b/deodexerant/Main.c @@ -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; }