diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-02-02 17:55:04 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-02-02 17:55:04 +0000 |
| commit | adf722453879bb93e708d0501a192d00b629fadf (patch) | |
| tree | ffd4d394ad86c6cf4d18d5e3491200cef6ecbdf4 /utils | |
| parent | 5d849a963e562d1996c20cd72228835276288141 (diff) | |
| download | rockbox-adf722453879bb93e708d0501a192d00b629fadf.zip rockbox-adf722453879bb93e708d0501a192d00b629fadf.tar.gz rockbox-adf722453879bb93e708d0501a192d00b629fadf.tar.bz2 rockbox-adf722453879bb93e708d0501a192d00b629fadf.tar.xz | |
Fix red. Replace remaining MEM's mit MEMORYSIZE.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29190 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/zenutils/libraries/zlib123/zlib/inflate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/zenutils/libraries/zlib123/zlib/inflate.c b/utils/zenutils/libraries/zlib123/zlib/inflate.c index 792fdee..c3e6068 100644 --- a/utils/zenutils/libraries/zlib123/zlib/inflate.c +++ b/utils/zenutils/libraries/zlib123/zlib/inflate.c @@ -1134,7 +1134,7 @@ int flush; RESTORE(); if (state->wsize || (state->mode < CHECK && out != strm->avail_out)) if (updatewindow(strm, out)) { - state->mode = MEM; + state->mode = MEMORYSIZE; return Z_MEM_ERROR; } in -= strm->avail_in; @@ -1190,7 +1190,7 @@ uInt dictLength; /* copy dictionary to window */ if (updatewindow(strm, strm->avail_out)) { - state->mode = MEM; + state->mode = MEMORYSIZE; return Z_MEM_ERROR; } if (dictLength > state->wsize) { |