summaryrefslogtreecommitdiff
path: root/vpx_mem/vpx_mem.c
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2015-10-06 22:48:18 -0700
committerJames Zern <jzern@google.com>2015-10-06 22:48:18 -0700
commit35540898381c3b11dde7f1e88cd36932adc4b919 (patch)
treef39312d6d0d03e5d3a86e8b7d882f070e08d955c /vpx_mem/vpx_mem.c
parentce3f4ade670cf02e05998f4ca50e08736802f5e7 (diff)
downloadlibvpx-35540898381c3b11dde7f1e88cd36932adc4b919.tar
libvpx-35540898381c3b11dde7f1e88cd36932adc4b919.tar.gz
libvpx-35540898381c3b11dde7f1e88cd36932adc4b919.tar.bz2
libvpx-35540898381c3b11dde7f1e88cd36932adc4b919.zip
vpx_memset16: quiet signed/unsigned warning
Change-Id: I144bedde7ea43f1b84360c1a7c8a042fd30abb6b
Diffstat (limited to 'vpx_mem/vpx_mem.c')
-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++)