mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +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:
@@ -147,7 +147,7 @@ static unsigned int unique = 0;
|
||||
static call_options_t global_options;
|
||||
|
||||
/*! \brief Private structure of a OpenH323 channel */
|
||||
struct oh323_pvt {
|
||||
static struct oh323_pvt {
|
||||
ast_mutex_t lock; /*!< Channel private lock */
|
||||
call_options_t options; /*!<!< Options to be used during call setup */
|
||||
int alreadygone; /*!< Whether or not we've already been destroyed by our peer */
|
||||
|
Reference in New Issue
Block a user