aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/common.h
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2024-01-20 21:15:12 +0000
committerLibravatar GitHub <noreply@github.com>2024-01-20 21:15:12 +0000
commit4f134116b77f5d03b239df3ea9b56d46811f5665 (patch)
tree77646491f3d8b6b742d74a39e5e6c91fab95487a /src/include/common.h
parentMerge pull request #6159 from kmk3/build-use-cppflags (diff)
parentbuild: use full paths on compile/link targets (diff)
downloadfirejail-4f134116b77f5d03b239df3ea9b56d46811f5665.tar.gz
firejail-4f134116b77f5d03b239df3ea9b56d46811f5665.tar.zst
firejail-4f134116b77f5d03b239df3ea9b56d46811f5665.zip
Merge pull request #6158 from kmk3/build-use-full-paths
build: use full paths on compile/link targets
Diffstat (limited to 'src/include/common.h')
-rw-r--r--src/include/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/common.h b/src/include/common.h
index c9ec7b729..5f09fe3e2 100644
--- a/src/include/common.h
+++ b/src/include/common.h
@@ -41,8 +41,8 @@
41 41
42#define errExit(msg) do { \ 42#define errExit(msg) do { \
43 char msgout[500]; \ 43 char msgout[500]; \
44 snprintf(msgout, 500, "Error %s/%s:%d %s(): %s", \ 44 snprintf(msgout, 500, "Error %s:%d: %s: %s", \
45 MOD_DIR, __FILE__, __LINE__, __func__, msg); \ 45 __FILE__, __LINE__, __func__, msg); \
46 perror(msgout); \ 46 perror(msgout); \
47 exit(1); \ 47 exit(1); \
48} while (0) 48} while (0)