Author: Bleep <tomh@inxpress.net>
[ircu2.10.12-pk.git] / ircd / m_error.c
index f981a6627b1114c8feeaa3d6a3bcc8b4fa019b82..85e6befec9abff7039b4321b540098b0ecf49bd0 100644 (file)
  */
 int ms_error(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
 {
-  char *para;
+  const char *para;
 
   para = (parc > 1 && *parv[parc - 1] != '\0') ? parv[parc - 1] : "<>";
 
@@ -147,7 +147,7 @@ int ms_error(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
  */
 int mr_error(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
 {
-  char *para;
+  const char *para;
 
   para = (parc > 1 && *parv[parc - 1] != '\0') ? parv[parc - 1] : "<>";