summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2019-12-15 11:31:57 -0500
committerLibravatar rusty-snake <print_hello_world+Public@protonmail.com>2019-12-21 14:54:22 +0100
commitb63ff7a8d0b1ed48a921fca4e76b2f12466e9239 (patch)
treee1f0270fdc05b929cbab7f3f5c1c589f05cfff4c /src
parentconfigure script, version, relnotes (diff)
downloadfirejail-b63ff7a8d0b1ed48a921fca4e76b2f12466e9239.tar.gz
firejail-b63ff7a8d0b1ed48a921fca4e76b2f12466e9239.tar.zst
firejail-b63ff7a8d0b1ed48a921fca4e76b2f12466e9239.zip
small fix
Diffstat (limited to 'src')
-rw-r--r--src/lib/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/common.c b/src/lib/common.c
index 1678a4092..3a7f910e1 100644
--- a/src/lib/common.c
+++ b/src/lib/common.c
@@ -53,7 +53,7 @@ int join_namespace(pid_t pid, char *type) {
53 53
54errout: 54errout:
55 free(path); 55 free(path);
56 fprintf(stderr, "Error: cannot join namespace %s\\n", type); 56 fprintf(stderr, "Error: cannot join namespace %s\n", type);
57 return -1; 57 return -1;
58 58
59} 59}