mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 20:56:39 +00:00
Convert a number of global module variables to 'static'.
These modules all contained variables that are module-global but not system-global, but were not marked 'static'. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@200587 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2283,7 +2283,7 @@ static int function_agent(struct ast_channel *chan, const char *cmd, char *data,
|
||||
return 0;
|
||||
}
|
||||
|
||||
struct ast_custom_function agent_function = {
|
||||
static struct ast_custom_function agent_function = {
|
||||
.name = "AGENT",
|
||||
.read = function_agent,
|
||||
};
|
||||
|
Reference in New Issue
Block a user