summaryrefslogtreecommitdiffstats
path: root/src/UDPClient/UDPClient.cpp
diff options
context:
space:
mode:
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);
}