sparse fixup: warning: Using plain integer as NULL pointer

This commit is contained in:
Sven-Haegar Koch 2011-05-28 03:46:39 +02:00 committed by Guus Sliepen
parent f4010694b3
commit 434e57ae5e
10 changed files with 16 additions and 16 deletions

View file

@ -608,7 +608,7 @@ void close_network_connections(void) {
for(node = connection_tree->head; node; node = next) {
next = node->next;
c = node->data;
c->outgoing = false;
c->outgoing = NULL;
terminate_connection(c, false);
}