mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
fixing compile warnings, renaming config option "overlap_dial" to "overlapdial"
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39479 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -211,8 +211,8 @@ static int entity;
|
||||
|
||||
static struct misdn_lib *glob_mgr;
|
||||
|
||||
unsigned char tone_425_flip[TONE_425_SIZE];
|
||||
unsigned char tone_silence_flip[TONE_SILENCE_SIZE];
|
||||
char tone_425_flip[TONE_425_SIZE];
|
||||
char tone_silence_flip[TONE_SILENCE_SIZE];
|
||||
|
||||
static void misdn_lib_isdn_event_catcher(void *arg);
|
||||
static int handle_event_nt(void *dat, void *arg);
|
||||
@@ -292,13 +292,13 @@ void init_flip_bits(void)
|
||||
}
|
||||
}
|
||||
|
||||
unsigned char * flip_buf_bits ( unsigned char * buf , int len)
|
||||
char * flip_buf_bits ( char * buf , int len)
|
||||
{
|
||||
int i;
|
||||
char * start = buf;
|
||||
|
||||
for (i = 0 ; i < len; i++) {
|
||||
buf[i] = flip_table[buf[i]];
|
||||
buf[i] = flip_table[(unsigned char)buf[i]];
|
||||
}
|
||||
|
||||
return start;
|
||||
|
Reference in New Issue
Block a user