mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-07 02:18:15 +00:00
eliminate signedness warnings (issue #5129)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6530 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -161,9 +161,9 @@ struct adsi_script {
|
||||
struct adsi_flag flags[7];
|
||||
|
||||
/* Stuff from adsi script */
|
||||
char sec[5];
|
||||
unsigned char sec[5];
|
||||
char desc[19];
|
||||
char fdn[5];
|
||||
unsigned char fdn[5];
|
||||
int ver;
|
||||
};
|
||||
|
||||
@@ -1427,7 +1427,7 @@ static int adsi_prog(struct ast_channel *chan, char *script)
|
||||
{
|
||||
struct adsi_script *scr;
|
||||
int x;
|
||||
char buf[1024];
|
||||
unsigned char buf[1024];
|
||||
int bytes;
|
||||
scr = compile_script(script);
|
||||
if (!scr)
|
||||
|
||||
Reference in New Issue
Block a user