From 1c7e5b2e48050d8adbd0e92e9de269669989c48a Mon Sep 17 00:00:00 2001 From: Michael Black W9MDB Date: Fri, 16 Oct 2020 14:48:01 -0500 Subject: [PATCH] Fix win32termios.h https://github.com/Hamlib/Hamlib/issues/421 --- lib/win32termios.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/win32termios.h b/lib/win32termios.h index f4d6f04e6..4deef8211 100644 --- a/lib/win32termios.h +++ b/lib/win32termios.h @@ -56,8 +56,8 @@ } typedef unsigned char cc_t; -typedef unsigned int32_t speed_t; -typedef unsigned int32_t tcflag_t; +typedef int32_t speed_t; +typedef int32_t tcflag_t; /* structs are from linux includes or linux man pages to match interfaces.