Minor OS/2 bug with a misplace #endif

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15266 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2002-04-26 13:08:26 +00:00
parent 1cee3f6006
commit 4c0c805334

View File

@@ -95,7 +95,6 @@ local int huft_build(uIntf* b, uInt n, uInt s, const uIntf* d, const uIntf* e,
inflate_huft* FAR *t, uIntf* m, inflate_huft* hp, uInt* hn, uIntf* v) inflate_huft* FAR *t, uIntf* m, inflate_huft* hp, uInt* hn, uIntf* v)
#else #else
local int huft_build(b, n, s, d, e, t, m, hp, hn, v) local int huft_build(b, n, s, d, e, t, m, hp, hn, v)
#endif
uIntf *b; /* code lengths in bits (all assumed <= BMAX) */ uIntf *b; /* code lengths in bits (all assumed <= BMAX) */
uInt n; /* number of codes (assumed <= 288) */ uInt n; /* number of codes (assumed <= 288) */
uInt s; /* number of simple-valued codes (0..s-1) */ uInt s; /* number of simple-valued codes (0..s-1) */
@@ -106,6 +105,7 @@ uIntf *m; /* maximum lookup bits, returns actual */
inflate_huft *hp; /* space for trees */ inflate_huft *hp; /* space for trees */
uInt *hn; /* hufts used in space */ uInt *hn; /* hufts used in space */
uIntf *v; /* working area: values in order of bit length */ uIntf *v; /* working area: values in order of bit length */
#endif
/* Given a list of code lengths and a maximum table size, make a set of /* Given a list of code lengths and a maximum table size, make a set of
tables to decode that set of codes. Return Z_OK on success, Z_BUF_ERROR tables to decode that set of codes. Return Z_OK on success, Z_BUF_ERROR
if the given code set is incomplete (the tables are still built in this if the given code set is incomplete (the tables are still built in this