]> git.ipfire.org Git - thirdparty/cups-filters.git/commit
libcupsfilters: Silenced warnings about deprecated uint16/uint32
authorTill Kamppeter <till.kamppeter@gmail.com>
Sun, 10 Apr 2022 08:52:58 +0000 (10:52 +0200)
committerTill Kamppeter <till.kamppeter@gmail.com>
Sun, 10 Apr 2022 08:52:58 +0000 (10:52 +0200)
commitc02f8b513779e0c1e3a78f24716bb9fe1d60c261
treef46a0f736e472af383d38ff2eafd25ddac430981
parent1745a4bc8526e7838dc5d8a6fd618befd762eca9
libcupsfilters: Silenced warnings about deprecated uint16/uint32

The function to read TIFF image files via libtiff in
cupsfilters/image-tiff.c uses the deprecated types uint16 and
uint32. The replacements for these types are uint16_t and uint32_t.

This commit replaces the types and so silences the compiler warnings.
cupsfilters/image-tiff.c