From: Richard Mudgett Date: Tue, 24 Feb 2015 23:00:24 +0000 (+0000) Subject: config.h: Use real parameter names for ast_variable_new() define. X-Git-Tag: 14.0.0-beta1~1222 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57525c3cf2df8f48d9e8d647ea722494b42461f5;p=thirdparty%2Fasterisk.git config.h: Use real parameter names for ast_variable_new() define. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@432220 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/include/asterisk/config.h b/include/asterisk/config.h index 3b46982b20..23c91b0272 100644 --- a/include/asterisk/config.h +++ b/include/asterisk/config.h @@ -863,7 +863,7 @@ void ast_category_rename(struct ast_category *cat, const char *name); #ifdef MALLOC_DEBUG struct ast_variable *_ast_variable_new(const char *name, const char *value, const char *filename, const char *file, const char *function, int lineno); -#define ast_variable_new(a, b, c) _ast_variable_new(a, b, c, __FILE__, __PRETTY_FUNCTION__, __LINE__) +#define ast_variable_new(name, value, filename) _ast_variable_new(name, value, filename, __FILE__, __PRETTY_FUNCTION__, __LINE__) #else struct ast_variable *ast_variable_new(const char *name, const char *value, const char *filename); #endif