diff options
Diffstat (limited to 'src/elfs/elfparser32.c')
| -rwxr-xr-x | src/elfs/elfparser32.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/elfs/elfparser32.c b/src/elfs/elfparser32.c index b4bb78e4..376bb34d 100755 --- a/src/elfs/elfparser32.c +++ b/src/elfs/elfparser32.c @@ -252,8 +252,10 @@ elfheader_t* ParseElfHeader32(FILE* f, const char* name, int exec) printf_log(LOG_DEBUG, "The DT_INIT_ARRAYSZ is %d\n", h->initarray_sz); break; case DT_PREINIT_ARRAYSZ: - if(val) - printf_log(LOG_NONE, "Warning, PreInit Array (size=%d) present and ignored!\n", val); + #ifndef ANDROID + if(val) + printf_log(LOG_NONE, "Warning, PreInit Array (size=%d) present and ignored!\n", val); + #endif break; case DT_FINI: // Exit hook h->finientry = ptr; |