From ad985af76363dabbbc66837fd2aaa00182378149 Mon Sep 17 00:00:00 2001 From: "Julian M. Kunkel" Date: Fri, 6 Nov 2020 09:30:59 +0000 Subject: [PATCH] Location problem on non Linux systems. --- src/utilities.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/utilities.h b/src/utilities.h index 020f27b..56cc8db 100755 --- a/src/utilities.h +++ b/src/utilities.h @@ -30,13 +30,7 @@ extern enum OutputFormat_t outputFormat; /* format of the output */ * Try using the system's PATH_MAX, which is what realpath and such use. */ #define MAX_PATHLEN PATH_MAX - - -#ifdef __linux__ #define ERROR_LOCATION __func__ -#else -#define ERROR_LOCATION __LINE__ -#endif void* safeMalloc(uint64_t size);