summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_common.h
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2014-05-13 10:07:45 -0700
committerYaowu Xu <yaowu@google.com>2014-05-14 09:46:11 -0700
commited09580777ead6cb36ef1b227a25424034f38bb8 (patch)
tree89115d3418b802a68291567cc5d46185aa6c5d12 /vp9/common/vp9_common.h
parentb0ab60038121dd87bd22f67ce5326bd5d8869636 (diff)
downloadlibvpx-ed09580777ead6cb36ef1b227a25424034f38bb8.tar
libvpx-ed09580777ead6cb36ef1b227a25424034f38bb8.tar.gz
libvpx-ed09580777ead6cb36ef1b227a25424034f38bb8.tar.bz2
libvpx-ed09580777ead6cb36ef1b227a25424034f38bb8.zip
vp9_decodeframe.c: cleanup -wextra warnings
Change-Id: I0315cea6a5e58182bc2556e9825ec2ef0b1480c3
Diffstat (limited to 'vp9/common/vp9_common.h')
-rw-r--r--vp9/common/vp9_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/common/vp9_common.h b/vp9/common/vp9_common.h
index 2dccb7031..04db7c0bb 100644
--- a/vp9/common/vp9_common.h
+++ b/vp9/common/vp9_common.h
@@ -45,7 +45,7 @@ extern "C" {
vpx_memcpy(dest, src, n * sizeof(*src)); \
}
-#define vp9_zero(dest) vpx_memset(&dest, 0, sizeof(dest))
+#define vp9_zero(dest) vpx_memset(&(dest), 0, sizeof(dest))
#define vp9_zero_array(dest, n) vpx_memset(dest, 0, n * sizeof(*dest))
static INLINE uint8_t clip_pixel(int val) {