From b963fe41ae2cd669e5819aded531375ddaebc8b2 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Fri, 16 Jun 2023 15:42:20 -0300 Subject: Improve errExit error messages Changes: * Move msg to the end of errExit (right before perror(3p)) * Include the full file path (within the repository) * Add "()" to function name for clarity Before: Error malloc: main.c:123 main: Cannot allocate memory After: Error src/firejail/main.c:123 main(): malloc: Cannot allocate memory Note: This clarifies which is the exact file that the error message comes from, as there are many source files with the same name. For example: $ git ls-files 'src/*/main.c' | wc -l 20 --- src/fnettrace/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'src/fnettrace') diff --git a/src/fnettrace/Makefile b/src/fnettrace/Makefile index 94381d299..fe74afda2 100644 --- a/src/fnettrace/Makefile +++ b/src/fnettrace/Makefile @@ -2,6 +2,7 @@ ROOT = ../.. -include $(ROOT)/config.mk +MOD_DIR = src/fnettrace PROG = fnettrace TARGET = $(PROG) -- cgit v1.2.3-54-g00ecf