From d0d93be4f4b042adef86bee5ca4eef5322908eb3 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Fri, 18 Jan 2008 22:57:15 +0000 Subject: [PATCH] Remove the __ in front of the unused variable. This causes some compilers to freak out. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@99127 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/channel.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h index e764d19d62..23f1409f7b 100644 --- a/include/asterisk/channel.h +++ b/include/asterisk/channel.h @@ -428,9 +428,8 @@ struct ast_channel { int rawwriteformat; /*!< Raw write format */ struct ast_audiohook_list *audiohooks; - /*! This pointer should stay for Asterisk 1.4. It just keeps the struct size the same - * for the sake of ABI compatability. */ - void *__unused; + void *unused; /*! This pointer should stay for Asterisk 1.4. It just keeps the struct size the same + * for the sake of ABI compatability. */ AST_LIST_ENTRY(ast_channel) chan_list; /*!< For easy linking */