aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authormattf <mattf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-10 22:06:11 +0000
committermattf <mattf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-10 22:06:11 +0000
commitcd1b5fdda1dcbe5d8d26ff3c63565d31f7f7ea56 (patch)
treeafefcb90dd374e2530cc49f8b9535b54a6616db6 /channels
parent185973285bf4ea859c2d5390314865cf08cc74fa (diff)
Make sure we don't use 32bits for a value that only requires 1 bit. Also, fix a compiler warning for one of the SS7 functions.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@47478 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_zap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 94809af79..9c58f5a14 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -614,8 +614,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;
@@ -8349,7 +8349,7 @@ static void ss7_reset_linkset(struct zt_ss7 *linkset)
int i, startcic = -1, endcic;
if (linkset->numchans <= 0)
- return 0;
+ return;
startcic = linkset->pvts[0]->cic;