mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 12:36:58 +00:00
resolve a compiler warning so i can build in dev mode
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@73514 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2475,7 +2475,7 @@ static char *compose_func_args(struct expr_node *arglist)
|
|||||||
}
|
}
|
||||||
t = t->right;
|
t = t->right;
|
||||||
}
|
}
|
||||||
ast_log(LOG_NOTICE,"argbuf uses %d bytes;\n", strlen(argbuf));
|
ast_log(LOG_NOTICE,"argbuf uses %d bytes;\n", (int) strlen(argbuf));
|
||||||
return argbuf;
|
return argbuf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -647,7 +647,7 @@ static char *compose_func_args(struct expr_node *arglist)
|
|||||||
}
|
}
|
||||||
t = t->right;
|
t = t->right;
|
||||||
}
|
}
|
||||||
ast_log(LOG_NOTICE,"argbuf uses %d bytes;\n", strlen(argbuf));
|
ast_log(LOG_NOTICE,"argbuf uses %d bytes;\n", (int) strlen(argbuf));
|
||||||
return argbuf;
|
return argbuf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user