summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-09-06 20:19:08 +1000
committerChris Johns <chrisj@rtems.org>2014-09-06 20:19:08 +1000
commit82775e9e7006f2a66d900f7a99699788bfd5cd18 (patch)
tree2b4428c06291f6c3678c7a6b342e774f79c1889f
parent3eb00648c06a63504d2bca0028075dff2715d5e1 (diff)
Fxi the split call.
-rw-r--r--rld-path.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rld-path.cpp b/rld-path.cpp
index 51288ce..8e24d3a 100644
--- a/rld-path.cpp
+++ b/rld-path.cpp
@@ -57,7 +57,7 @@ namespace rld
path_split (const std::string& path, paths& paths)
{
strings ps;
- rld::split (path, ps, RLD_PATHSTR_SEPARATOR);
+ rld::split (ps, path, RLD_PATHSTR_SEPARATOR);
if (ps.size ())
{
for (strings::iterator psi = ps.begin ();