aboutsummaryrefslogtreecommitdiffstats
path: root/alsause.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-01-29 17:14:20 +0100
committerMattias Andrée <m@maandree.se>2025-01-29 17:14:20 +0100
commitb2522fbba753669b90c248d325391c2691ead2ff (patch)
treeae35efb2e5cdebcb6a1ece7972202df859f7af1e /alsause.c
parentFix support for when libc does not implement open_tree or move_mount (diff)
downloadalsause-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 '')
-rw-r--r--alsause.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/alsause.c b/alsause.c
index 57d9ff7..c91125e 100644
--- a/alsause.c
+++ b/alsause.c
@@ -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);
}