summaryrefslogtreecommitdiffstats
path: root/src/UDPClient/UDPClient.cpp
diff options
context:
space:
mode:
authorTobias Frust <tobiasfrust@gmail.com>2016-06-30 10:27:20 +0200
committerTobias Frust <tobiasfrust@gmail.com>2016-06-30 10:27:20 +0200
commitdbf28e725f062744222559257abe64d8a39a9d50 (patch)
tree046cdf556175423454c4b012db82499b02ef04ff /src/UDPClient/UDPClient.cpp
parent5680aa99001cb50c707c4187cd8ada0c41a573dd (diff)
downloadods-dbf28e725f062744222559257abe64d8a39a9d50.tar.gz
ods-dbf28e725f062744222559257abe64d8a39a9d50.tar.bz2
ods-dbf28e725f062744222559257abe64d8a39a9d50.tar.xz
ods-dbf28e725f062744222559257abe64d8a39a9d50.zip
bug fixes
Diffstat (limited to 'src/UDPClient/UDPClient.cpp')
-rw-r--r--src/UDPClient/UDPClient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/UDPClient/UDPClient.cpp b/src/UDPClient/UDPClient.cpp
index 75e81e1..844b7f9 100644
--- a/src/UDPClient/UDPClient.cpp
+++ b/src/UDPClient/UDPClient.cpp
@@ -135,6 +135,6 @@
* \return -1 if an error occurs, otherwise the number of bytes sent. errno
* is set accordingly on error.
*/
- int UDPClient::send(const char *msg, size_t size){
+ int UDPClient::send(const char *msg, std::size_t size){
return sendto(f_socket, msg, size, 0, f_addrinfo->ai_addr, f_addrinfo->ai_addrlen);
}