diff options
author | Mattias Andrée <m@maandree.se> | 2025-01-29 17:14:20 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-01-29 17:14:20 +0100 |
commit | b2522fbba753669b90c248d325391c2691ead2ff (patch) | |
tree | ae35efb2e5cdebcb6a1ece7972202df859f7af1e /alsause.c | |
parent | Fix support for when libc does not implement open_tree or move_mount (diff) | |
download | alsause-b2522fbba753669b90c248d325391c2691ead2ff.tar.gz alsause-b2522fbba753669b90c248d325391c2691ead2ff.tar.bz2 alsause-b2522fbba753669b90c248d325391c2691ead2ff.tar.xz |
Fix error print1.0.1
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'alsause.c')
-rw-r--r-- | alsause.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -305,7 +305,7 @@ main(int argc, char *argv[]) treefd = open_tree(AT_FDCWD, temppath, OPEN_TREE_CLONE | OPEN_TREE_CLOEXEC); if (treefd < 0) { - weprintf("open_tree AT_FDCWD %s OPEN_TREE_CLONE:", temppath); + weprintf("open_tree AT_FDCWD %s OPEN_TREE_CLONE|OPEN_TREE_CLOEXEC:", temppath); unlink(temppath); exit(libsimple_default_failure_exit); } |