summaryrefslogtreecommitdiff
path: root/vrt/lib/socket_rx_buffer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'vrt/lib/socket_rx_buffer.cc')
-rw-r--r--vrt/lib/socket_rx_buffer.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/vrt/lib/socket_rx_buffer.cc b/vrt/lib/socket_rx_buffer.cc
index 203a21295..f6fa05c10 100644
--- a/vrt/lib/socket_rx_buffer.cc
+++ b/vrt/lib/socket_rx_buffer.cc
@@ -108,16 +108,16 @@ namespace vrt {
// If we don't get what we asked for, treat it as an error.
// Otherwise the radio's probably not going to work reliably anyway.
- if (cursize < buflen){
+ if (cursize < (int) buflen){
fprintf(stderr,
-"socket_rx_buffer: failed to allocate socket receive buffer of size %d.\n",
+"socket_rx_buffer: failed to allocate socket receive buffer of size %zd.\n",
buflen);
fprintf(stderr,
"To fix this, please increase the maximum allowed using:\n\n");
fprintf(stderr,
- " $ sudo sysctl -w net.core.rmem_max=%d\n\n", buflen);
+ " $ sudo sysctl -w net.core.rmem_max=%zd\n\n", buflen);
fprintf(stderr,
-"and/or edit /etc/sysctl.conf: net.core.rmem_max=%d\n\n", buflen);
+"and/or edit /etc/sysctl.conf: net.core.rmem_max=%zd\n\n", buflen);
return false;
}