summaryrefslogtreecommitdiff
path: root/src/model/reladd.c
diff options
context:
space:
mode:
authornorly <ny-git@enpas.org>2013-06-02 04:05:30 +0100
committernorly <ny-git@enpas.org>2013-06-03 02:08:46 +0100
commita08653637257ceaef8e61d965ab0d6c52b0c697d (patch)
tree8d5a0d2e1d42a582e0f4e98919817ecc7b5e1792 /src/model/reladd.c
parentc68a087b1de2fc9be1bfc588a7b207f97667f897 (diff)
Guess where unknown functions are in .rel.plt
Diffstat (limited to 'src/model/reladd.c')
-rw-r--r--src/model/reladd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/model/reladd.c b/src/model/reladd.c
index a3ccc99..80f106f 100644
--- a/src/model/reladd.c
+++ b/src/model/reladd.c
@@ -111,10 +111,10 @@ static ElfuScn* insertSection(ElfuElf *me, ElfuElf *mrel, ElfuScn *oldscn)
return newscn;
} else {
- ELFU_WARN("insertSection: Skipping section %s with flags %jd (type %d).\n",
+ ELFU_WARN("insertSection: Skipping non-memory section %s (type %d flags %jd).\n",
elfu_mScnName(mrel, oldscn),
- oldscn->shdr.sh_flags,
- oldscn->shdr.sh_type);
+ oldscn->shdr.sh_type,
+ oldscn->shdr.sh_flags);
goto ERROR;
}