srtp fix cast for last round of fixes

This commit is contained in:
Jeff Lenk 2014-01-31 11:19:30 -06:00
parent 37a639860c
commit 558decda2c

View File

@ -24,11 +24,11 @@ debug_module_t mod_stat = {
err_status_t
stat_test_monobit(uint8_t *data) {
uint8_t *data_end = data + STAT_TEST_DATA_LEN;
int ones_count;
uint16_t ones_count;
ones_count = 0;
while (data < data_end) {
ones_count += octet_get_weight(*data);
ones_count += (uint16_t)octet_get_weight(*data);
data++;
}