aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-19 20:06:50 +0000
committerroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-19 20:06:50 +0000
commitcf74dcf5e8b487df8ebe14216577a8a85193533f (patch)
tree55e29e5aa49c1e975b1ff0ceee7a282c08f30f4e /utils
parenta5842441d6aa2f39bcb0045d4dd3e13cce225561 (diff)
automerge commit
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2-netsec@28831 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils')
-rw-r--r--utils/smsq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/smsq.c b/utils/smsq.c
index 361fc2679..429ca0004 100644
--- a/utils/smsq.c
+++ b/utils/smsq.c
@@ -142,7 +142,7 @@ static char txqcheck (char *dir, char *queue, char subaddress, char *channel, ch
p = channel;
p = strchr (p, 'X');
if (p)
- fprintf (f, "%.*s%c%s\n", p - channel, channel, subaddress, p + 1);
+ fprintf (f, "%.*s%c%s\n", (int)(p - channel), channel, subaddress, p + 1);
else
fprintf (f, "%s\n", channel);
}
@@ -153,7 +153,7 @@ static char txqcheck (char *dir, char *queue, char subaddress, char *channel, ch
{
p = strchr (callerid, 'X');
if (p)
- fprintf (f, "%.*s%c%s", p - callerid, callerid, subaddress, p + 1);
+ fprintf (f, "%.*s%c%s", (int)(p - callerid), callerid, subaddress, p + 1);
else
fprintf (f, "%s", callerid);
}