aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_zap.c
diff options
context:
space:
mode:
authormattf <mattf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-10 22:23:58 +0000
committermattf <mattf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-10 22:23:58 +0000
commit38cb750018aef13dcfe28b61c248e4f325a6f741 (patch)
tree34fba43b68f532639715a3731682f9290518964b /channels/chan_zap.c
parentb64c8ca419cd06859ff3648af04fb833600ad9d5 (diff)
Make sure we don't use 32bits when we only need one bit.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@47480 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_zap.c')
-rw-r--r--channels/chan_zap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 990a4bdf8..3dbbb3be8 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -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;