comparison of 0 > unsigned expression is always false [-Wtautological-compare]

int vs unsigned int.
This commit is contained in:
ksherlock 2017-05-08 21:06:01 -04:00 committed by GitHub
parent 8812faf218
commit a11446c2fb

View File

@ -151,7 +151,7 @@ int ser_get_control_lines(int fd)
int ser_set_control_lines(int fd, int state)
{
unsigned int status;
int status;
if (0 > (status = ser_get_control_lines(fd))) {