From: Scott Griepentrog Date: Sun, 13 Jul 2014 20:08:37 +0000 (+0000) Subject: astobj2: correct define for ao2_t_cleanup X-Git-Tag: 13.0.0-beta1~126 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e245920d8063a6416ad542e9bb01b2c3f3b38df;p=thirdparty%2Fasterisk.git astobj2: correct define for ao2_t_cleanup This change maps the ao2_t_cleanup() function to the correct debug function so that it can be used. Review: https://reviewboard.asterisk.org/r/3764/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@418488 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/include/asterisk/astobj2.h b/include/asterisk/astobj2.h index 83af495e13..f10e1d3dec 100644 --- a/include/asterisk/astobj2.h +++ b/include/asterisk/astobj2.h @@ -1972,7 +1972,7 @@ void __ao2_cleanup(void *obj); void __ao2_cleanup_debug(void *obj, const char *tag, const char *file, int line, const char *function); #ifdef REF_DEBUG #define ao2_cleanup(obj) __ao2_cleanup_debug((obj), "", __FILE__, __LINE__, __PRETTY_FUNCTION__) -#define ao2_t_cleanup(obj, tag) __ao2_t_cleanup_debug((obj), (tag), __FILE__, __LINE__, __PRETTY_FUNCTION__) +#define ao2_t_cleanup(obj, tag) __ao2_cleanup_debug((obj), (tag), __FILE__, __LINE__, __PRETTY_FUNCTION__) #else #define ao2_cleanup(obj) __ao2_cleanup(obj) #define ao2_t_cleanup(obj, tag) __ao2_cleanup((obj))