1.Fix parameter error.
This commit is contained in:
JasonJiaJie 2017-11-15 09:41:06 +08:00
parent b747164942
commit 9f745c6aaf
1 changed files with 2 additions and 2 deletions

View File

@ -111,12 +111,12 @@ int tcsendbreak(int fd, int dur)
int tcflush(int fd, int queue) int tcflush(int fd, int queue)
{ {
return ioctl(fd, TCFLSH, (void*)queue); return ioctl(fd, TCFLSH, (void*)&queue);
} }
int tcflow(int fd, int action) int tcflow(int fd, int action)
{ {
return ioctl(fd, TCXONC, (void*)action); return ioctl(fd, TCXONC, (void*)&action);
} }
/** /**