From a6835bdb5572764029a3ddf46205616d3d5f5abe Mon Sep 17 00:00:00 2001 From: newHeiko <35038740+newHeiko@users.noreply.github.com> Date: Mon, 17 Nov 2025 21:03:52 +0100 Subject: [PATCH] Fix testPollPosix to work with changes from #54bd919 --- src/test/c/testPollPosix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/c/testPollPosix.c b/src/test/c/testPollPosix.c index b075591a..2d4a5916 100644 --- a/src/test/c/testPollPosix.c +++ b/src/test/c/testPollPosix.c @@ -92,7 +92,7 @@ int configPort(serialPort *port) // Apply changes if (fcntl(port->handle, F_SETFL, flags)) return 0; - if (setConfigOptions(port->handle, baudRate, &options)) + if (setCustomBaudRate(port->handle, baudRate)) return 0; return 1; }