aboutsummaryrefslogtreecommitdiff
path: root/src/conversation
diff options
context:
space:
mode:
authorDavid Barksdale <amatus.amongus@gmail.com>2013-11-10 23:38:21 +0000
committerDavid Barksdale <amatus.amongus@gmail.com>2013-11-10 23:38:21 +0000
commit90154d43ea47d82637b615f35d0c8462f4007c3d (patch)
tree39d7db420ee9bc6eb252c2e6d937f6d9b584ff19 /src/conversation
parent172ab07eeb1215cc9d22dabc589f7529ac2d59ea (diff)
downloadgnunet-90154d43ea47d82637b615f35d0c8462f4007c3d.tar.gz
gnunet-90154d43ea47d82637b615f35d0c8462f4007c3d.zip
Fix incompatability with musl libc.
Diffstat (limited to 'src/conversation')
-rw-r--r--src/conversation/gnunet-service-conversation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conversation/gnunet-service-conversation.c b/src/conversation/gnunet-service-conversation.c
index e0c10e533..054274e33 100644
--- a/src/conversation/gnunet-service-conversation.c
+++ b/src/conversation/gnunet-service-conversation.c
@@ -1141,7 +1141,7 @@ handle_client_disconnect (void *cls,
1141 line = GNUNET_SERVER_client_get_user_context (client, struct Line); 1141 line = GNUNET_SERVER_client_get_user_context (client, struct Line);
1142 if (NULL == line) 1142 if (NULL == line)
1143 return; 1143 return;
1144 GNUNET_SERVER_client_set_user_context (client, NULL); 1144 GNUNET_SERVER_client_set_user_context (client, (void *)NULL);
1145 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 1145 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1146 "Client disconnected, closing line\n"); 1146 "Client disconnected, closing line\n");
1147 GNUNET_CONTAINER_DLL_remove (lines_head, 1147 GNUNET_CONTAINER_DLL_remove (lines_head,