Skip to content
Snippets Groups Projects
Commit 5b5bd544 authored by Mark Michelson's avatar Mark Michelson
Browse files

Use safe macro practices even though they really aren't necessary.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@187424 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 0058b025
No related branches found
No related tags found
No related merge requests found
......@@ -186,8 +186,8 @@ static struct ao2_container *mohclasses;
static int reload(void);
#define mohclass_ref(class,string) (ao2_t_ref((class), +1, string), class)
#define mohclass_unref(class,string) (ao2_t_ref((class), -1, string), (struct mohclass *) NULL)
#define mohclass_ref(class,string) (ao2_t_ref((class), +1, (string)), class)
#define mohclass_unref(class,string) (ao2_t_ref((class), -1, (string)), (struct mohclass *) NULL)
static void moh_files_release(struct ast_channel *chan, void *data)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment