diff options
-rw-r--r-- | gatmux/gsm0710.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gatmux/gsm0710.c b/gatmux/gsm0710.c index b93fa78c..d0df30e0 100644 --- a/gatmux/gsm0710.c +++ b/gatmux/gsm0710.c @@ -555,7 +555,7 @@ void gsm0710_write_data(struct gsm0710_context *ctx, int channel, if (temp > ctx->frame_size) temp = ctx->frame_size; gsm0710_write_frame(ctx, channel, GSM0710_DATA, data, temp); - data = (((const unsigned char *)data) + temp); + data = ((const unsigned char *)data) + temp; len -= temp; } } |