shithub: libvpx

Download patch

ref: d790bc17797253d2fdb17490c31ff7bafdbe2a41
parent: 5e39a8c16fb514fc9d876d0927b21d78d62f6032
parent: 49f7f05f52a0b75d61e1381033d6472bd119c2fd
author: John Koleszar <jkoleszar@google.com>
date: Thu May 24 05:40:29 EDT 2012

Merge "asm_*_offsets to define variables as constants"

--- a/vpx_ports/asm_offsets.h
+++ b/vpx_ports/asm_offsets.h
@@ -23,7 +23,7 @@
 #define BEGIN int main(void) {
 #define END return 0; }
 #else
-#define DEFINE(sym, val) int sym = val;
+#define DEFINE(sym, val) const int sym = val;
 #define BEGIN
 #define END
 #endif
--