From d35a39cb896e8d943d7ab13745562348586080c0 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sat, 5 Sep 2009 07:22:59 +0200 Subject: [PATCH] Fix previous casting removal fix --- gatmux/gsm0710.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatmux/gsm0710.c b/gatmux/gsm0710.c index b93fa78..d0df30e 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; } } -- 2.7.4