mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 20:04:50 +00:00
pointer signedness warnings elimination
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37296 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -117,7 +117,7 @@ static int gsmtolin_framein(struct ast_trans_pvt *pvt, struct ast_frame *f)
|
|||||||
|
|
||||||
for (x=0; x < f->datalen; x += flen) {
|
for (x=0; x < f->datalen; x += flen) {
|
||||||
unsigned char data[2 * GSM_FRAME_LEN];
|
unsigned char data[2 * GSM_FRAME_LEN];
|
||||||
char *src;
|
unsigned char *src;
|
||||||
int len;
|
int len;
|
||||||
if (flen == MSGSM_FRAME_LEN) {
|
if (flen == MSGSM_FRAME_LEN) {
|
||||||
len = 2*GSM_SAMPLES;
|
len = 2*GSM_SAMPLES;
|
||||||
|
Reference in New Issue
Block a user