]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Use the correct type for aoce_delayhangup bit field.
authorRichard Mudgett <rmudgett@digium.com>
Wed, 18 Aug 2010 15:28:27 +0000 (15:28 +0000)
committerRichard Mudgett <rmudgett@digium.com>
Wed, 18 Aug 2010 15:28:27 +0000 (15:28 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@282672 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/sig_pri.h

index f57d8f700e86caae537ba4d93888af63275290dc..5a770ce0b0f3973953d3500f1c6eb923a9233300 100644 (file)
@@ -295,8 +295,8 @@ struct sig_pri_span {
        int fds[SIG_PRI_NUM_DCHANS];                                    /*!< FD's for d-channels */
 
 #if defined(HAVE_PRI_AOC_EVENTS)
-       int aoc_passthrough_flag;          /*!< Represents what AOC messages (S,D,E) are allowed to pass-through */
-       int aoce_delayhangup:1;            /*!< defines whether the aoce_delayhangup option is enabled or not */
+       int aoc_passthrough_flag;                                               /*!< Represents what AOC messages (S,D,E) are allowed to pass-through */
+       unsigned int aoce_delayhangup:1;                                /*!< defines whether the aoce_delayhangup option is enabled or not */
 #endif /* defined(HAVE_PRI_AOC_EVENTS) */
 
 #if defined(HAVE_PRI_SERVICE_MESSAGES)