Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
PR #1800: fix wrong variable in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
reidpr authored Jan 5, 2024
1 parent 63f77b1 commit e1637d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/ch_misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ void mkdir_overmount(const char *path, const char *scratch)
Z_ (mkdir(over, 0755));
Z_ (mkdir(path_dst, 0755));
Zf (mount(parent, path_dst, NULL, MS_REC|MS_BIND, NULL),
"can't bind-mount: %s -> %s", path, path_dst);
"can't bind-mount: %s -> %s", parent, path_dst);
Zf (mount(over, parent, NULL, MS_REC|MS_BIND, NULL),
"can't bind-mount: %s- > %s", over, parent);

Expand Down

0 comments on commit e1637d9

Please sign in to comment.