mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Little variable optimizations
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4144 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -17,9 +17,9 @@
|
||||
#include <asterisk/linkedlists.h>
|
||||
|
||||
struct ast_var_t {
|
||||
char *name;
|
||||
char *value;
|
||||
AST_LIST_ENTRY(ast_var_t) entries;
|
||||
char *value;
|
||||
char name[0];
|
||||
};
|
||||
|
||||
struct ast_var_t *ast_var_assign(const char *name, const char *value);
|
||||
|
Reference in New Issue
Block a user