We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce09400 commit 88fbbb6Copy full SHA for 88fbbb6
+stdlib/samepath.m
@@ -23,7 +23,7 @@
23
% https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/nio/file/Files.html#isSameFile(java.nio.file.Path,java.nio.file.Path)
24
25
issame = stdlib.exists(path1) && stdlib.exists(path2) && ...
26
- stdlib.canonical(path1, false) == stdlib.canonical(path2, false);
+ strcmp(stdlib.canonical(path1, false), stdlib.canonical(path2, false));
27
28
end
29
0 commit comments