aboutsummaryrefslogtreecommitdiffstats
path: root/plugin_asterisk.c
diff options
context:
space:
mode:
authormichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2009-01-06 07:16:12 +0000
committermichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2009-01-06 07:16:12 +0000
commit34300355834f128af5354768f347021819d68a1a (patch)
tree04e97bfee90de2d9d603b6c2e6e656fbc509cf75 /plugin_asterisk.c
parentfbc24da8de2d08f262e51ceb3fd1ff3b48c0c482 (diff)
downloadlcd4linux-34300355834f128af5354768f347021819d68a1a.tar.gz
compiler warnings fixed
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@948 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugin_asterisk.c')
-rw-r--r--plugin_asterisk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin_asterisk.c b/plugin_asterisk.c
index 790fab2..65bcb01 100644
--- a/plugin_asterisk.c
+++ b/plugin_asterisk.c
@@ -93,7 +93,7 @@ static void zapstatus(RESULT * result, RESULT * arg1)
while (fgets(line, 100, infile) != NULL) {
if (strstr(line, "Zap") != NULL) {
- for (i = 0; i < strlen(line); i++) {
+ for (i = 0; i < (int) strlen(line); i++) {
if (i < 20) {
Channel[i] = line[i];
} else if (i < 42) {
@@ -132,10 +132,10 @@ static void zapstatus(RESULT * result, RESULT * arg1)
} else {
if (strlen(line) > 54 && skipline > 1) {
for (i = 55; i < 88; i++) {
- if (i < 40) {
+ if (i < 80) {
Channel[i - 55] = line[i];
} else {
- EndPoint[i - 40] = line[i];
+ EndPoint[i - 80] = line[i];
}
}
strncpy(Channel, rtrim(Channel, ' '), 5);