aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/channel.h
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-18 22:57:15 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-18 22:57:15 +0000
commit9115686255f1adefa36a37ef5b1a1225bae8bdd3 (patch)
tree5b479f2fab503ba367875a29cb22d5fa7f8b5c1d /include/asterisk/channel.h
parent2c4015877e5eb0281bd69eaaa375e9e18db496ad (diff)
Remove the __ in front of the unused variable. This causes some compilers to freak out.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@99127 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/channel.h')
-rw-r--r--include/asterisk/channel.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index e764d19d6..23f1409f7 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 */