From 57525c3cf2df8f48d9e8d647ea722494b42461f5 Mon Sep 17 00:00:00 2001 From: Richard Mudgett Date: Tue, 24 Feb 2015 23:00:24 +0000 Subject: [PATCH] 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 --- include/asterisk/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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