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.
2 parents 96a1740 + bfb357c commit 2704757Copy full SHA for 2704757
src/libutil/file-system.cc
@@ -111,7 +111,7 @@ Path canonPath(PathView path, bool resolveSymlinks)
111
(std::string & result, std::string_view & remaining) {
112
if (resolveSymlinks && fs::is_symlink(result)) {
113
if (++followCount >= maxFollow)
114
- throw Error("infinite symlink recursion in path '%0%'", remaining);
+ throw Error("infinite symlink recursion in path '%1%'", remaining);
115
remaining = (temp = concatStrings(readLink(result), remaining));
116
if (isAbsolute(remaining)) {
117
/* restart for symlinks pointing to absolute path */
0 commit comments