summaryrefslogtreecommitdiff
path: root/minilzo.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-02-03 22:09:19 +0000
committertron <tron@openttd.org>2005-02-03 22:09:19 +0000
commita5ffbbee2d319847a526d2009934c9aba6dedce3 (patch)
treebb67e00bee2cb7de6344f6767d05cd591179a2d8 /minilzo.c
parent08f2a395a32b10e612d37b22818c4b5d1474ad7c (diff)
downloadopenttd-a5ffbbee2d319847a526d2009934c9aba6dedce3.tar.xz
(svn r1781) Fix static declaration after non-static declaration of same symbol
Diffstat (limited to 'minilzo.c')
-rw-r--r--minilzo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/minilzo.c b/minilzo.c
index f7d715d69..4ca0fc3ff 100644
--- a/minilzo.c
+++ b/minilzo.c
@@ -572,7 +572,7 @@ extern __inline__ unsigned short lzo_rotr16(unsigned short value, int shift)
* copyright string in the executable of your product.
*/
-static const lzo_byte __lzo_copyright[] =
+const lzo_byte __lzo_copyright[] =
#if !defined(__LZO_IN_MINLZO)
LZO_VERSION_STRING;
#else