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

@@ -46,7 +46,7 @@ LOCAL_USER_DECL;
static int cpeid_setstatus(struct ast_channel *chan, char *stuff[], int voice)
{
int justify[5] = { ADSI_JUST_CENT, ADSI_JUST_LEFT, ADSI_JUST_LEFT, ADSI_JUST_LEFT };
unsigned char *tmp[5];
char *tmp[5];
int x;
for (x=0;x<4;x++)
tmp[x] = stuff[x];