14 lines
456 B
Diff
14 lines
456 B
Diff
diff --git a/dep/g3dlite/source/fileutils.cpp b/dep/g3dlite/source/fileutils.cpp
|
|
index 2788adad3bcd..f5310084cec7 100644
|
|
--- a/dep/g3dlite/source/fileutils.cpp
|
|
+++ b/dep/g3dlite/source/fileutils.cpp
|
|
@@ -490,7 +490,7 @@ void parseFilename(
|
|
|
|
}
|
|
|
|
- } else if ((f.size() >= 2) & isSlash(f[0]) && isSlash(f[1])) {
|
|
+ } else if ((f.size() >= 2) && isSlash(f[0]) && isSlash(f[1])) {
|
|
|
|
// e.g. //foo
|
|
root = f.substr(0, 2);
|