aboutsummaryrefslogtreecommitdiffstats
path: root/src/faudit/faudit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/faudit/faudit.h')
-rw-r--r--src/faudit/faudit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/faudit/faudit.h b/src/faudit/faudit.h
index 180121ec1..e940a9dbf 100644
--- a/src/faudit/faudit.h
+++ b/src/faudit/faudit.h
@@ -31,7 +31,7 @@
31#include <sys/mount.h> 31#include <sys/mount.h>
32#include <assert.h> 32#include <assert.h>
33 33
34#define errExit(msg) do { char msgout[500]; sprintf(msgout, "Error %s:%s(%d)", msg, __FUNCTION__, __LINE__); perror(msgout); exit(1);} while (0) 34#define errExit(msg) do { char msgout[500]; snprintf(msgout, 500, "Error %s:%s(%d)", msg, __FUNCTION__, __LINE__); perror(msgout); exit(1);} while (0)
35 35
36// main.c 36// main.c
37extern char *prog; 37extern char *prog;