]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
srtp fix cast for last round of fixes
authorJeff Lenk <jeff@jefflenk.com>
Fri, 31 Jan 2014 17:19:30 +0000 (11:19 -0600)
committerJeff Lenk <jeff@jefflenk.com>
Fri, 31 Jan 2014 17:19:30 +0000 (11:19 -0600)
libs/srtp/crypto/math/stat.c

index a744f91f88b2998d1436ddee8e1c52cfa64af548..cf928a80f6edabec6bdf4d6a546bb2ec745709e6 100644 (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++;
   }