shithub: libvpx

Download patch

ref: 5205d299bbc2b82f5d72c37851bfba6124dbfee3
parent: cab6ac16e0cc5fd149720165d351c8c8c9997dea
parent: e343988f9d5040cc467ee475306b71cc66bc91a1
author: John Koleszar <jkoleszar@google.com>
date: Mon Jun 4 14:54:23 EDT 2012

Merge "asm_*_offsets to define variables as constants" into eider

--- 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
--