summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-09-10 11:16:26 +1000
committerChris Johns <chrisj@rtems.org>2014-09-10 11:16:26 +1000
commit675e8a86bca0310ba3819095f4b54080b2ea253a (patch)
tree34d7682d90b5efd8366c46f0b64e60a7ff4c4a62
parentc01e0addea2844cadeb24bce8203556b74c1c846 (diff)
Fix the error message.
-rw-r--r--rtems-ld.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtems-ld.cpp b/rtems-ld.cpp
index 6177e99..e8d79db 100644
--- a/rtems-ld.cpp
+++ b/rtems-ld.cpp
@@ -367,7 +367,7 @@ main (int argc, char* argv[])
{
const std::string& prefix = rld::get_prefix ();
if (rtems_path.empty () && prefix.empty ())
- throw rld::error ("No RTEMS path provide with arch/bsp", "options");
+ throw rld::error ("No RTEMS path provided with arch/bsp", "options");
if (!rtems_path.empty ())
rld::rtems::set_path (rtems_path);
else