lrzip/libzpaq
Con Kolivas d78c3bbd7a models is array of chars. char's signess is implementation specific.
It's unsigned on ARMv7. Unsigned char cannot represent negative values.
GCC 6 complains about it:

    narrowing conversion of '-1' from 'int' to 'char' inside { } [-Wnarrowing]

This can be reproduced with older GCC or by:

   ./configure CXXFLAGS='-Wnarrowing -funsigned-char'

This patch casts the negative values explicitly because changing the
type to signed char[] would change prototypes of public methods.

Signed-off-by: Petr Písař <ppisar@redhat.com>
2016-06-09 15:25:49 +10:00
..
libzpaq.3.pod Fix EOL to unix on libzpaq 2015-03-10 18:23:00 +11:00
libzpaq.cpp models is array of chars. char's signess is implementation specific. 2016-06-09 15:25:49 +10:00
libzpaq.h Use int64_t for i64 2015-03-10 20:05:51 +11:00