commit | c6318e9dd3f7a91f40340911bcf57bf36768910e | [log] [tgz] |
---|---|---|
author | Erik de Castro Lopo <erikd@mega-nerd.com> | Sat Jan 14 17:26:39 2017 +1100 |
committer | Erik de Castro Lopo <erikd@mega-nerd.com> | Sat Jan 14 17:46:02 2017 +1100 |
tree | 19c44a2ef48655e1c81b1779a4d02813b6d0aa78 | |
parent | 55721556161e6ab209f940f5023bc44b4051524a [diff] |
Purge usage of `unsigned` type As pointed out by Ozkan Sezer, on some platforms `int32_t` is actually a typedef for `long` so `unsigned` cannot be used interchangably with `FLAC__uint32`. Fix is to switch from `unsigned` to explicit sized ISO C types defined in <stdint.h>.