functions need to return values

This commit is contained in:
IOhannes m zmölnig 2022-03-21 11:26:41 +01:00
parent d06acc6753
commit 3eb008b6d8

View file

@ -481,6 +481,7 @@ static int set_hupcl(t_comport *x, int nr)
// this is a dummy function since Windows doesn't use HUPCL, AFAIK hans@eds.org // this is a dummy function since Windows doesn't use HUPCL, AFAIK hans@eds.org
(void)x; (void)x;
(void)nr; (void)nr;
return 1;
} }
static HANDLE open_serial(unsigned int com_num, t_comport *x) static HANDLE open_serial(unsigned int com_num, t_comport *x)