ignore return values explicitly
authorChristian Grothoff <christian@grothoff.org>
Fri, 4 Nov 2011 13:53:27 +0000 (13:53 +0000)
committerChristian Grothoff <christian@grothoff.org>
Fri, 4 Nov 2011 13:53:27 +0000 (13:53 +0000)
src/transport/test_plugin_transport_wlan_dummy.c

index 7d017477c0b0d07c6565dcabe91ecda878ececec..d4c300d25abcacff1323be4bf7fee2ef9b10da31 100644 (file)
@@ -432,15 +432,16 @@ testmode (int argc, char *argv[])
   GNUNET_SERVER_mst_destroy (stdin_mst);
   GNUNET_SERVER_mst_destroy (file_in_mst);
 
-end:if (fpout != NULL)
+end:
+  if (fpout != NULL)
     fclose (fpout);
   if (fpin != NULL)
     fclose (fpin);
 
   if (1 == first)
   {
-    unlink (FIFO_FILE1);
-    unlink (FIFO_FILE2);
+    (void) unlink (FIFO_FILE1);
+    (void) unlink (FIFO_FILE2);
   }
 
   return (0);