summaryrefslogtreecommitdiff
path: root/vpx_ports/mem.h
diff options
context:
space:
mode:
Diffstat (limited to 'vpx_ports/mem.h')
-rw-r--r--vpx_ports/mem.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/vpx_ports/mem.h b/vpx_ports/mem.h
index 29e507f4f..62b86bb1d 100644
--- a/vpx_ports/mem.h
+++ b/vpx_ports/mem.h
@@ -11,6 +11,7 @@
#ifndef VPX_PORTS_MEM_H
#define VPX_PORTS_MEM_H
+
#include "vpx_config.h"
#include "vpx/vpx_integer.h"
@@ -31,8 +32,8 @@
* within the array.
*/
#define DECLARE_ALIGNED_ARRAY(a,typ,val,n)\
-typ val##_[(n)+(a)/sizeof(typ)+1];\
-typ *val = (typ*)((((intptr_t)val##_)+(a)-1)&((intptr_t)-(a)))
+ typ val##_[(n)+(a)/sizeof(typ)+1];\
+ typ *val = (typ*)((((intptr_t)val##_)+(a)-1)&((intptr_t)-(a)))
/* Indicates that the usage of the specified variable has been audited to assure