From: Florian Westphal Date: Sat, 19 Mar 2005 15:46:38 +0000 (+0000) Subject: fix Config_Error_NaN prototype (first argument missed "const") X-Git-Tag: rel-0-9-0-pre1~88 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=27d93d7d8c1dacb3a9874084a67629df26f96bb1 fix Config_Error_NaN prototype (first argument missed "const") --- diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c index f00c2633..cc56e6c0 100644 --- a/src/ngircd/conf.c +++ b/src/ngircd/conf.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: conf.c,v 1.70 2005/03/15 16:56:18 alex Exp $"; +static char UNUSED id[] = "$Id: conf.c,v 1.71 2005/03/19 15:46:38 fw Exp $"; #include "imp.h" #include @@ -66,8 +66,8 @@ LOCAL VOID Handle_CHANNEL PARAMS(( INT Line, CHAR *Var, CHAR *Arg )); LOCAL VOID Config_Error PARAMS(( CONST INT Level, CONST CHAR *Format, ... )); -LOCAL VOID Config_Error_NaN PARAMS(( INT LINE, CONST CHAR *Value )); -LOCAL VOID Config_Error_TooLong PARAMS(( INT LINE, CONST CHAR *Value )); +LOCAL VOID Config_Error_NaN PARAMS(( const int LINE, const char *Value )); +LOCAL VOID Config_Error_TooLong PARAMS(( const int LINE, const char *Value )); LOCAL VOID Init_Server_Struct PARAMS(( CONF_SERVER *Server )); @@ -1009,13 +1009,13 @@ Validate_Config( BOOLEAN Configtest ) LOCAL VOID -Config_Error_TooLong ( CONST INT Line, CONST CHAR *Item ) +Config_Error_TooLong ( const int Line, const char *Item ) { Config_Error( LOG_WARNING, "%s, line %d: Value of \"%s\" too long!", NGIRCd_ConfFile, Line, Item ); } LOCAL VOID -Config_Error_NaN( CONST INT Line, CONST CHAR *Item ) +Config_Error_NaN( const int Line, const char *Item ) { Config_Error( LOG_WARNING, "%s, line %d: Value of \"%s\" is not a number!", NGIRCd_ConfFile, Line, Item ); }