From 379116434fe9c9e4f98167d064f7e029741b7e50 Mon Sep 17 00:00:00 2001 From: Marius Tolzmann Date: Mon, 26 Oct 2015 11:40:40 +0100 Subject: [PATCH] mx_log: Fix typo "ALERT" --- mx_log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mx_log.c b/mx_log.c index ba5a8d55..6a6a5b53 100644 --- a/mx_log.c +++ b/mx_log.c @@ -109,7 +109,7 @@ static int log_log(int level, int loglevel, char *file, unsigned long line, cons prefix = "EMERGENCY: "; break; case MX_LOG_ALERT: - prefix = "AKERT: "; + prefix = "ALERT: "; break; case MX_LOG_CRIT: prefix = "CRITCAL ERROR: ";