Skip to content

outputs: replace deprecated uint{16,32} types

The uint16 and uint32 types from tiffio.h are marked as deprecated.

As such, GCC 11's deprecated type warning fails with -Wall on uses of these types.

Address this by switching these to the C/C++ standard uint{16,32}_t types.

Merge request reports