summaryrefslogtreecommitdiff
path: root/rld-resolver.cpp
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-09-01 13:26:47 +1000
committerChris Johns <chrisj@rtems.org>2014-09-01 13:26:47 +1000
commit8c841a582f45d8a6cc1b3c439d4f660099e34d1b (patch)
tree6d5099a2bc67b72cbb43c0b3c3af0e8db39ce2cf /rld-resolver.cpp
parent02ccf12ec62e7894786b6fff059f92fdcd7acaa1 (diff)
rld: Split the file into a path module for path specific functions.
This allows resued for other parts of the system not dependent on objcet files or archives.
Diffstat (limited to 'rld-resolver.cpp')
-rw-r--r--rld-resolver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rld-resolver.cpp b/rld-resolver.cpp
index 31a6779..d2a9f1e 100644
--- a/rld-resolver.cpp
+++ b/rld-resolver.cpp
@@ -57,7 +57,7 @@ namespace rld
symbols::symtab& unresolved,
const std::string& fullname)
{
- const std::string name = files::basename (fullname);
+ const std::string name = path::basename (fullname);
static int nesting = 0;