aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-19 19:18:41 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-19 19:18:41 +0000
commitf9b9945c97801e3a17bad721a62cf1768a83b541 (patch)
treee55a355cd874efd03a7a571b1f0df33f05573038 /utils
parent257ff7d1da5c474fe4c8f541f8f4130c201dffaf (diff)
fix the build of smsq with -Werror. I learned something new about format
strings from this patch! (issue #7141, Mithraen) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@28790 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);
}