summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--extensions/libebt_log.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/libebt_log.c b/extensions/libebt_log.c
index 0799185d..f170af03 100644
--- a/extensions/libebt_log.c
+++ b/extensions/libebt_log.c
@@ -27,12 +27,12 @@
#define LOG_LOG '5'
#define LOG_IP6 '6'
-typedef struct _code {
+struct code {
char *c_name;
int c_val;
-} CODE;
+};
-static CODE eight_priority[] = {
+static struct code eight_priority[] = {
{ "emerg", LOG_EMERG },
{ "alert", LOG_ALERT },
{ "crit", LOG_CRIT },