mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
chan_misdn: Fix a few issues causing compile errors
Change-Id: I54b48c24d7ca88ed80496fdfd142d08772a7ab98
This commit is contained in:
@@ -369,8 +369,8 @@ struct hold_info {
|
||||
int channel;
|
||||
};
|
||||
|
||||
#define chan_list_ref(obj, debug) (ao2_t_ref((obj), +1, (debug)), (obj))
|
||||
#define chan_list_unref(obj, debug) (ao2_t_ref((obj), -1, (debug)), NULL)
|
||||
#define chan_list_ref(obj, debug) ao2_t_ref((obj), +1, (debug))
|
||||
#define chan_list_unref(obj, debug) ao2_t_ref((obj), -1, (debug))
|
||||
|
||||
/*!
|
||||
* \brief Channel call record structure
|
||||
|
Reference in New Issue
Block a user