diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2009-09-05 07:22:59 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-09-05 07:22:59 +0200 |
commit | d35a39cb896e8d943d7ab13745562348586080c0 (patch) | |
tree | 00ade08f08d6265b206ec89def29a93ba98b0e4c | |
parent | 64ca9ad280e8cb5000bfdf7eb1f6457ae82af60a (diff) | |
download | ofono-d35a39cb896e8d943d7ab13745562348586080c0.tar.bz2 |
Fix previous casting removal fix
-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; } } |