gsm: Address compiler warning about unused variable 'z'

The comment explains why we don't care about the content of z,
stop storing it.

gsm_utils.c: In function 'gsm_7bit_encode':
gsm_utils.c:253:13: warning: variable 'z' set but not used [-Wunused-but-set-variable]
This commit is contained in:
Holger Hans Peter Freyther 2012-09-11 10:38:43 +02:00
parent 06f645542c
commit cc7d9ec20e
1 changed files with 4 additions and 3 deletions

View File

@ -250,16 +250,17 @@ int gsm_septets2octets(uint8_t *result, uint8_t *rdata, uint8_t septet_len, uint
/* GSM 03.38 6.2.1 Character packing */
int gsm_7bit_encode(uint8_t *result, const char *data)
{
int y = 0, z = 0;
int y = 0;
/* prepare for the worst case, every character expanding to two bytes */
uint8_t *rdata = calloc(strlen(data) * 2, sizeof(uint8_t));
y = gsm_septet_encode(rdata, data);
z = gsm_septets2octets(result, rdata, y, 0);
gsm_septets2octets(result, rdata, y, 0);
free(rdata);
/*
* We don't care about the number of octets (z), because they are not
* We don't care about the number of octets, because they are not
* unique. E.g.:
* 1.) 46 non-extension characters + 1 extension character
* => (46 * 7 bit + (1 * (2 * 7 bit))) / 8 bit = 42 octets