summaryrefslogtreecommitdiff
path: root/cpukit/libdl/rtl-shell.c
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2019-02-02 15:09:53 +1100
committerChris Johns <chrisj@rtems.org>2019-02-05 10:15:09 +1100
commit849bcc6ddcf5f66bc9909e925ffaef0a0cb8e75b (patch)
tree3c23d004b9ce8d16e7b23e019f2c20d2806608c3 /cpukit/libdl/rtl-shell.c
parent7a893fc98c0673dbcb28d50989c3b055701603aa (diff)
libdl: Add powerpc large memory and small data support.libdl-epics-support
- Add support for architecure sections that can be handled by the architecture back end. - Add trampoline/fixup support for PowerPC. This means the PowerPC now supports large memory loading of applications. - Add a bit allocator to manage small block based regions of memory. - Add small data (sdata/sbss) support for the PowerPC. The support makes the linker allocated small data region of memory a global resource available to libdl loaded object files. Updates #3687 Updates #3685
Diffstat (limited to 'cpukit/libdl/rtl-shell.c')
-rw-r--r--cpukit/libdl/rtl-shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libdl/rtl-shell.c b/cpukit/libdl/rtl-shell.c
index ab5553174b..7458fb5608 100644
--- a/cpukit/libdl/rtl-shell.c
+++ b/cpukit/libdl/rtl-shell.c
@@ -175,7 +175,7 @@ rtems_rtl_dependencies (rtems_rtl_obj* obj,
{
rtems_rtl_dep_data* dd = (rtems_rtl_dep_data*) data;
if (!dd->first)
- printf ("\n%-*c: ", dd->indent, ' ');
+ printf ("\n%-*c: ", (int) dd->indent, ' ');
else
dd->first = false;
printf ("%s", dependent->oname);