From ccc4185eff99f1ade0d8e3934c944f4d2cb825d7 Mon Sep 17 00:00:00 2001 From: Alex Tereschenko Date: Sun, 16 Oct 2016 16:43:21 +0200 Subject: [PATCH] uart.hpp: fix typo in setNonBlocking() function name Signed-off-by: Alex Tereschenko Signed-off-by: Brendan Le Foll --- api/mraa/uart.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/mraa/uart.hpp b/api/mraa/uart.hpp index 571dec7..ac3b5b0 100644 --- a/api/mraa/uart.hpp +++ b/api/mraa/uart.hpp @@ -263,7 +263,7 @@ class Uart * @return Result of operation */ Result - SetNonBlocking(bool nonblock) + setNonBlocking(bool nonblock) { return (Result) mraa_uart_set_non_blocking(m_uart, nonblock); }