summaryrefslogtreecommitdiff
path: root/rld-resolver.cpp
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2012-12-15 22:44:58 +1100
committerChris Johns <chrisj@rtems.org>2012-12-15 22:44:58 +1100
commit7c02253d5df3347a0ff85e43fd2a9dca0955b55f (patch)
tree11712ee20d60770cba1c54031c21be9b2c22e954 /rld-resolver.cpp
parentb0133b8592fcfca819f73e8663c3375dc27fb274 (diff)
i386 related fixes
Fix the size of the section calculated in image::lay_out. It did not correctly adjust for alignment. Make the sections being written correctly align.
Diffstat (limited to 'rld-resolver.cpp')
-rw-r--r--rld-resolver.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/rld-resolver.cpp b/rld-resolver.cpp
index abb7890..93bc9da 100644
--- a/rld-resolver.cpp
+++ b/rld-resolver.cpp
@@ -88,8 +88,7 @@ namespace rld
{
esi = symbols.find (urs.name ());
if (esi == symbols.end ())
- throw rld::error ("symbol referenced in '" + name +
- "' not found: " + urs.name (), "resolving");
+ throw rld::error ("symbol not found: " + urs.name (), name);
base = false;
}