summaryrefslogtreecommitdiff
path: root/src/model/reladd.c
diff options
context:
space:
mode:
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;
}