diff options
Diffstat (limited to 'gatmux/gsm0710_p.h')
-rw-r--r-- | gatmux/gsm0710_p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gatmux/gsm0710_p.h b/gatmux/gsm0710_p.h index bcf65da8..a365df99 100644 --- a/gatmux/gsm0710_p.h +++ b/gatmux/gsm0710_p.h @@ -67,7 +67,7 @@ struct gsm0710_context int frame_size; int port_speed; int server; - char buffer[GSM0710_BUFFER_SIZE]; + unsigned char buffer[GSM0710_BUFFER_SIZE]; int buffer_used; unsigned long used_channels[(GSM0710_MAX_CHANNELS + 31) / 32]; const char *reinit_detect; @@ -88,7 +88,7 @@ struct gsm0710_context void (*close_channel)(struct gsm0710_context *ctx, int channel); void (*terminate)(struct gsm0710_context *ctx); int (*packet_filter)(struct gsm0710_context *ctx, int channel, - int type, const char *data, int len); + int type, const unsigned char *data, int len); }; void gsm0710_initialize(struct gsm0710_context *ctx); |