diff options
Diffstat (limited to 'engines/agi/lzw.cpp')
-rw-r--r-- | engines/agi/lzw.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agi/lzw.cpp b/engines/agi/lzw.cpp index 60bd8f4fca..f645cb16d3 100644 --- a/engines/agi/lzw.cpp +++ b/engines/agi/lzw.cpp @@ -107,7 +107,7 @@ uint8 *LZWDecoder::decodeString(uint8 *buffer, uint32 code) { *buffer++ = appendCharacter[code]; code = prefixCode[code]; if (i++ >= 4000) { - error("lzw: error in code expansion."); + error("lzw: error in code expansion"); } } *buffer = code; |