Skip to content
Snippets Groups Projects
Commit 57525c3c authored by Richard Mudgett's avatar Richard Mudgett
Browse files

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
parent 8574c4d1
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment