From 8a71fdf0921bb7d8910689ff00ec4380484bae43 Mon Sep 17 00:00:00 2001 From: Victor Mayoral Vilches Date: Thu, 31 Jul 2014 12:07:01 -0700 Subject: [PATCH] HAL_Linux: minor syntax fix in UARTDriver Typo noticed by @hcervino. --- libraries/AP_HAL_Linux/UARTDriver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_HAL_Linux/UARTDriver.cpp b/libraries/AP_HAL_Linux/UARTDriver.cpp index c1b0d33e57..b260fb5aa1 100644 --- a/libraries/AP_HAL_Linux/UARTDriver.cpp +++ b/libraries/AP_HAL_Linux/UARTDriver.cpp @@ -280,7 +280,7 @@ void LinuxUARTDriver::_tcp_start_connection(bool wait_for_connection) printf("bind port %u for %u\n", (unsigned)ntohs(sockaddr.sin_port), - (unsigned)portNumber), + (unsigned)portNumber); ret = bind(listen_fd, (struct sockaddr *)&sockaddr, sizeof(sockaddr)); if (ret == -1) {