]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Make sure we don't use 32bits when we only need one bit.
authorMatthew Fredrickson <creslin@digium.com>
Fri, 10 Nov 2006 22:23:58 +0000 (22:23 +0000)
committerMatthew Fredrickson <creslin@digium.com>
Fri, 10 Nov 2006 22:23:58 +0000 (22:23 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@47480 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_zap.c

index 990a4bdf8e82e2acd769f0486555fe6c1a558790..3dbbb3be87a5441c0eeeab9590ec050dc7ab13c5 100644 (file)
@@ -577,8 +577,8 @@ static struct zt_pvt {
        unsigned int firstradio:1;
        unsigned int hanguponpolarityswitch:1;
        unsigned int hardwaredtmf:1;
-       unsigned int hidecallerid;
-       unsigned int hidecalleridname;      /*!< Hide just the name not the number for legacy PBX use */
+       unsigned int hidecallerid:1;
+       unsigned int hidecalleridname:1;      /*!< Hide just the name not the number for legacy PBX use */
        unsigned int ignoredtmf:1;
        unsigned int immediate:1;                       /*!< Answer before getting digits? */
        unsigned int inalarm:1;