From: <lab...@us...> - 2019-07-02 18:45:39
|
Revision: 1582 http://sourceforge.net/p/opengtoolkit/svn/1582 Author: labviewer Date: 2019-07-02 18:46:36 +0000 (Tue, 02 Jul 2019) Log Message: ----------- Fix error from removing static keyword Modified Paths: -------------- trunk/lvzip/c_source/inffixed.h Modified: trunk/lvzip/c_source/inffixed.h =================================================================== --- trunk/lvzip/c_source/inffixed.h 2019-01-01 20:59:25 UTC (rev 1581) +++ trunk/lvzip/c_source/inffixed.h 2019-07-02 18:46:36 UTC (rev 1582) @@ -7,7 +7,7 @@ subject to change. Applications should only use zlib.h. */ - const code lenfix[512] = { + static const code lenfix[512] = { {96,7,0},{0,8,80},{0,8,16},{20,8,115},{18,7,31},{0,8,112},{0,8,48}, {0,9,192},{16,7,10},{0,8,96},{0,8,32},{0,9,160},{0,8,0},{0,8,128}, {0,8,64},{0,9,224},{16,7,6},{0,8,88},{0,8,24},{0,9,144},{19,7,59}, @@ -84,7 +84,7 @@ {0,9,255} }; - const code distfix[32] = { + static const code distfix[32] = { {16,5,1},{23,5,257},{19,5,17},{27,5,4097},{17,5,5},{25,5,1025}, {21,5,65},{29,5,16385},{16,5,3},{24,5,513},{20,5,33},{28,5,8193}, {18,5,9},{26,5,2049},{22,5,129},{64,5,0},{16,5,2},{23,5,385}, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |