From c9e0652526bd4f208fd638640dac9ad6d5291f1c Mon Sep 17 00:00:00 2001 From: goldsimon Date: Thu, 31 Dec 2009 16:49:36 +0000 Subject: [PATCH] Remove C++-style comments --- test/unit/lwip_check.h | 2 +- test/unit/tcp/tcp_helper.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test/unit/lwip_check.h b/test/unit/lwip_check.h index d8984a12..e27f55ae 100644 --- a/test/unit/lwip_check.h +++ b/test/unit/lwip_check.h @@ -23,7 +23,7 @@ static Suite* create_suite(const char* name, TFun *tests, size_t num_tests, SFun Suite *s = suite_create(name); for(i = 0; i < num_tests; i++) { - // Core test case + /* Core test case */ TCase *tc_core = tcase_create("Core"); if ((setup != NULL) || (teardown != NULL)) { tcase_add_checked_fixture(tc_core, setup, teardown); diff --git a/test/unit/tcp/tcp_helper.c b/test/unit/tcp/tcp_helper.c index 0957cbe4..98ee5eb6 100644 --- a/test/unit/tcp/tcp_helper.c +++ b/test/unit/tcp/tcp_helper.c @@ -27,7 +27,6 @@ tcp_remove(struct tcp_pcb* pcb_list) void tcp_remove_all(void) { - //tcp_remove(tcp_bound_pcbs); tcp_remove(tcp_listen_pcbs.pcbs); tcp_remove(tcp_active_pcbs); tcp_remove(tcp_tw_pcbs);