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:
Kevin P. Fleming
2005-09-07 18:55:03 +00:00
parent a833f4699a
commit 40c5fa88a4
6 changed files with 48 additions and 45 deletions

View File

@@ -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)