Closed malaterre closed 4 years ago
man page for isprint states:
The standards require that the argument c for these functions is either EOF or a value that is representable in the type unsigned char. If the argument c is of type char, it must be cast to unsigned char.
Done, thanks. I changed the C-style cast into a static_cast, and fixed some similar isprint() calls in vtkNIFTIHeader.cxx.
man page for isprint states:
The standards require that the argument c for these functions is either EOF or a value that is representable in the type unsigned char. If the argument c is of type char, it must be cast to unsigned char.