aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_unix.c
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2020-10-16 10:20:32 +0200
committerMartin Schanzenbach <mschanzenbach@posteo.de>2020-10-16 10:20:32 +0200
commit09c3455b2c3dd01e52ac2dd9c62c41b3ebcf8028 (patch)
tree8a877f4c4c87a4fafc78b31735392b423360b5b8 /src/transport/plugin_transport_unix.c
parent37b7ecf6fd4ac226dad911ef22a67a96d5ce514d (diff)
downloadgnunet-09c3455b2c3dd01e52ac2dd9c62c41b3ebcf8028.tar.gz
gnunet-09c3455b2c3dd01e52ac2dd9c62c41b3ebcf8028.zip
-fix more warnings
Diffstat (limited to 'src/transport/plugin_transport_unix.c')
-rw-r--r--src/transport/plugin_transport_unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/plugin_transport_unix.c b/src/transport/plugin_transport_unix.c
index 9d3e7d354..2324914c9 100644
--- a/src/transport/plugin_transport_unix.c
+++ b/src/transport/plugin_transport_unix.c
@@ -1304,8 +1304,8 @@ unix_plugin_send (void *cls,
1304 return GNUNET_SYSERR; 1304 return GNUNET_SYSERR;
1305 } 1305 }
1306 LOG (GNUNET_ERROR_TYPE_DEBUG, 1306 LOG (GNUNET_ERROR_TYPE_DEBUG,
1307 "Sending %u bytes with session for peer `%s' `%s'\n", 1307 "Sending %lu bytes with session for peer `%s' `%s'\n",
1308 msgbuf_size, 1308 (unsigned long) msgbuf_size,
1309 GNUNET_i2s (&session->target), 1309 GNUNET_i2s (&session->target),
1310 unix_plugin_address_to_string (NULL, 1310 unix_plugin_address_to_string (NULL,
1311 session->address->address, 1311 session->address->address,