Files
Stefan Berger 83e047917f [LibOS] Use unsigned int for ioctl ops in shim_parser
This patch fixes this ppc64 compiler warning and also works on x86_64.

shim_parser.c: In function 'parse_ioctlop':
shim_parser.c:1184:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     if (op >= TCGETS && op <= TIOCVHANGUP) {
            ^~
shim_parser.c:1219:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     if (op >= FIONCLEX && op <= TIOCSERSETMULTI) {
            ^~
2020-06-05 20:56:35 +02:00
..