diff options
Diffstat (limited to '')
-rw-r--r-- | decompress.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decompress.cc b/decompress.cc index ef098ae..b440ecd 100644 --- a/decompress.cc +++ b/decompress.cc @@ -213,7 +213,7 @@ public: // Search forward from 'pos' for "LZIP" (Boyer-Moore algorithm) // Return pos of found string or 'pos+size' if not found. // -int find_magic( const uint8_t * const buffer, const int pos, const int size ) throw() +int find_magic( const uint8_t * const buffer, const int pos, const int size ) { const uint8_t table[256] = { 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, |