summaryrefslogtreecommitdiff
path: root/vpx_mem
diff options
context:
space:
mode:
Diffstat (limited to 'vpx_mem')
-rw-r--r--vpx_mem/vpx_mem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vpx_mem/vpx_mem.c b/vpx_mem/vpx_mem.c
index c6f501a6f..2729657c0 100644
--- a/vpx_mem/vpx_mem.c
+++ b/vpx_mem/vpx_mem.c
@@ -93,7 +93,7 @@ void vpx_free(void *memblk) {
#if CONFIG_VP9_HIGHBITDEPTH
void *vpx_memset16(void *dest, int val, size_t length) {
- int i;
+ size_t i;
void *orig = dest;
uint16_t *dest16 = dest;
for (i = 0; i < length; i++)