From af2b1532e8f8c5af044872788d4911c818e4609c Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 16 Oct 2023 13:46:13 +0200 Subject: linkers: Print a proper 0x-hex number It is so easy in standard C++. --- linkers/rtems-syms.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'linkers') diff --git a/linkers/rtems-syms.cpp b/linkers/rtems-syms.cpp index f6b207f..88ee970 100644 --- a/linkers/rtems-syms.cpp +++ b/linkers/rtems-syms.cpp @@ -305,7 +305,8 @@ output_sym::operator ()(const rld::symbols::symtab::value_type& value) val = sym.name (); } else { std::stringstream oss; - oss << std::hex << std::setfill ('0') << std::setw (8) << sym.value (); + oss << std::hex << std::showbase << std::internal << + std::setfill ('0') << std::setw (10) << sym.value (); val = oss.str (); } } -- cgit v1.2.3