aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_getcpeid.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-09-07 18:55:03 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-09-07 18:55:03 +0000
commit687a47fc262faffc5c03479a67aa34b4309c424f (patch)
tree48ab93bb9a56a35d1f5a7036385269dba00be30a /apps/app_getcpeid.c
parent44d51a1455391a0f937e55078edf1953566b671a (diff)
eliminate signedness warnings (issue #5129)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6530 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_getcpeid.c')
-rwxr-xr-xapps/app_getcpeid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_getcpeid.c b/apps/app_getcpeid.c
index 1ae5d2ffa..1c0277489 100755
--- a/apps/app_getcpeid.c
+++ b/apps/app_getcpeid.c
@@ -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];