Skip to content
Snippets Groups Projects
Commit 7af4b831 authored by deuce's avatar deuce
Browse files

Add missing semicolons.

parent b5591dfd
No related branches found
No related tags found
No related merge requests found
...@@ -152,13 +152,13 @@ int comGetModemStatus(COM_HANDLE handle) ...@@ -152,13 +152,13 @@ int comGetModemStatus(COM_HANDLE handle)
BOOL comRaiseDTR(COM_HANDLE handle) BOOL comRaiseDTR(COM_HANDLE handle)
{ {
int flags = TIOCM_DTR; int flags = TIOCM_DTR;
return(ioctl(handle, TIOCMBIS, &flags)==0) return(ioctl(handle, TIOCMBIS, &flags)==0);
} }
BOOL comLowerDTR(COM_HANDLE handle) BOOL comLowerDTR(COM_HANDLE handle)
{ {
int flags = TIOCM_DTR; int flags = TIOCM_DTR;
return(ioctl(handle, TIOCMBIC, &flags)==0) return(ioctl(handle, TIOCMBIC, &flags)==0);
} }
BOOL comWriteByte(COM_HANDLE handle, BYTE ch) BOOL comWriteByte(COM_HANDLE handle, BYTE ch)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment