Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

Commit e1637d9

Browse files
authored
PR #1800: fix wrong variable in error message
1 parent 63f77b1 commit e1637d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/ch_misc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ void mkdir_overmount(const char *path, const char *scratch)
467467
Z_ (mkdir(over, 0755));
468468
Z_ (mkdir(path_dst, 0755));
469469
Zf (mount(parent, path_dst, NULL, MS_REC|MS_BIND, NULL),
470-
"can't bind-mount: %s -> %s", path, path_dst);
470+
"can't bind-mount: %s -> %s", parent, path_dst);
471471
Zf (mount(over, parent, NULL, MS_REC|MS_BIND, NULL),
472472
"can't bind-mount: %s- > %s", over, parent);
473473

0 commit comments

Comments
 (0)