summaryrefslogtreecommitdiff
path: root/zaptel.h
diff options
context:
space:
mode:
authorkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-02-05 17:18:57 +0000
committerkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-02-05 17:18:57 +0000
commit1a8c2e2c0e19625af742f3600f4222622ca8ffb5 (patch)
tree9b91f51f0201bc57a5fa48387206baf26dbd9abb /zaptel.h
parentb2af10d896f48ec605ada4af4df70f53bca6badb (diff)
make a change to deal with buggy gcc 4.1 compilers
git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.2@2084 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'zaptel.h')
-rw-r--r--zaptel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/zaptel.h b/zaptel.h
index 5434af3..b58261d 100644
--- a/zaptel.h
+++ b/zaptel.h
@@ -1379,10 +1379,10 @@ struct zt_transcoder_channel {
int errorstatus;
int offset;
struct {
- unsigned int chan_built:1;
- unsigned int busy:1;
- unsigned int transient:1;
- unsigned int have_reference:1;
+ unsigned int chan_built;
+ unsigned int busy;
+ unsigned int transient;
+ unsigned int have_reference;
} flags;
unsigned int built_fmts;
unsigned int srcfmt;