Index: tools/skpdiff/skpdiff_util.cpp |
diff --git a/tools/skpdiff/skpdiff_util.cpp b/tools/skpdiff/skpdiff_util.cpp |
index 983bee20b3a2f96234db62495d564de5e2bdcd27..4a92f5e3f76b476b9281f75fed3fcea13df298a7 100644 |
--- a/tools/skpdiff/skpdiff_util.cpp |
+++ b/tools/skpdiff/skpdiff_util.cpp |
@@ -117,7 +117,7 @@ bool get_directory(const char path[], SkTArray<SkString>* entries) { |
while ((entry = readdir(dir))) { |
// dirent only gives relative paths, we need to join them to the base path to check if they |
// are directories. |
- SkString joinedPath = SkOSPath::SkPathJoin(path, entry->d_name); |
+ SkString joinedPath = SkOSPath::Join(path, entry->d_name); |
// We only care about files |
if (!sk_isdir(joinedPath.c_str())) { |