Silent a signed-comparison warning in Base-64 decoding
commite1894f0a0eb33eb27c80d88e35bc7cd5cf9f1e26
authorPetr Písař <petr.pisar@atlas.cz>
Thu, 1 Jan 2015 20:02:31 +0000 (1 21:02 +0100)
committerPetr Písař <petr.pisar@atlas.cz>
Thu, 1 Jan 2015 20:16:09 +0000 (1 21:16 +0100)
treecabf48c5accfede169e1e275c06e15611aa02120
parenta91bd9e8881b5b56b7379bb42923828c3eeb8c1b
Silent a signed-comparison warning in Base-64 decoding

The sizeof() is used to compute a number of members of a static array.
The unsigned (size_t) value was then used to compare against a signed
value. And here compiler can warn.

To prevent from pointless sign extension to size_t width, I decided to
store the "constant" (it's 80) into int8_t as it fits there.
src/cdecode.c