X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fcleanup.c;h=3499246c7abcb6b324844a0c52bd401eb238174c;hb=cb4bbc0c2d65535d1d47822d86ad88194243a31a;hp=7611139a65b66e56190660c0d05bf262e884bad6;hpb=be8c57c7e1de5962913f849b862faae01bead264;p=plomrogue diff --git a/src/client/cleanup.c b/src/client/cleanup.c index 7611139..3499246 100644 --- a/src/client/cleanup.c +++ b/src/client/cleanup.c @@ -18,7 +18,6 @@ static uint32_t cleanup_flags = 0x0000; extern void cleanup() { - char * f_name = "cleanup()"; free(world.map.cells); free(world.log); free(world.player_inventory); @@ -36,11 +35,11 @@ extern void cleanup() } if (cleanup_flags & CLEANUP_SERVER_IN) { - try_fclose(world.file_server_in, f_name); + try_fclose(world.file_server_in, __func__); } if (cleanup_flags & CLEANUP_SERVER_OUT) { - try_fclose(world.file_server_out, f_name); + try_fclose(world.file_server_out, __func__); } }