CLEANUP: log: Rename Alert/Warning in ha_alert/ha_warning
diff --git a/include/proto/log.h b/include/proto/log.h
index ec00809..95c1701 100644
--- a/include/proto/log.h
+++ b/include/proto/log.h
@@ -86,13 +86,13 @@
  * Displays the message on stderr with the date and pid. Overrides the quiet
  * mode during startup.
  */
-void Alert(const char *fmt, ...)
+void ha_alert(const char *fmt, ...)
 	__attribute__ ((format(printf, 1, 2)));
 
 /*
  * Displays the message on stderr with the date and pid.
  */
-void Warning(const char *fmt, ...)
+void ha_warning(const char *fmt, ...)
 	__attribute__ ((format(printf, 1, 2)));
 
 /*