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:
Kevin P. Fleming
2009-06-15 17:06:34 +00:00
parent 78ee46f13f
commit 4379249674
7 changed files with 20 additions and 22 deletions

View File

@@ -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,
};