aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-11-04 13:53:27 +0000
committerChristian Grothoff <christian@grothoff.org>2011-11-04 13:53:27 +0000
commit86c37c4c7ffeee1b2c72b1a853d05b3ca84f27b3 (patch)
treed8abe92becb1c6ea9d894f68b30512b0921c34e2 /src/transport
parentea9a077ced7eac09a3a6813428aad7e0395f966d (diff)
downloadgnunet-86c37c4c7ffeee1b2c72b1a853d05b3ca84f27b3.tar.gz
gnunet-86c37c4c7ffeee1b2c72b1a853d05b3ca84f27b3.zip
ignore return values explicitly
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/test_plugin_transport_wlan_dummy.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/transport/test_plugin_transport_wlan_dummy.c b/src/transport/test_plugin_transport_wlan_dummy.c
index 7d017477c..d4c300d25 100644
--- a/src/transport/test_plugin_transport_wlan_dummy.c
+++ b/src/transport/test_plugin_transport_wlan_dummy.c
@@ -432,15 +432,16 @@ testmode (int argc, char *argv[])
432 GNUNET_SERVER_mst_destroy (stdin_mst); 432 GNUNET_SERVER_mst_destroy (stdin_mst);
433 GNUNET_SERVER_mst_destroy (file_in_mst); 433 GNUNET_SERVER_mst_destroy (file_in_mst);
434 434
435end:if (fpout != NULL) 435end:
436 if (fpout != NULL)
436 fclose (fpout); 437 fclose (fpout);
437 if (fpin != NULL) 438 if (fpin != NULL)
438 fclose (fpin); 439 fclose (fpin);
439 440
440 if (1 == first) 441 if (1 == first)
441 { 442 {
442 unlink (FIFO_FILE1); 443 (void) unlink (FIFO_FILE1);
443 unlink (FIFO_FILE2); 444 (void) unlink (FIFO_FILE2);
444 } 445 }
445 446
446 return (0); 447 return (0);