From c705910b2fd3c603bc6ceac968383cdd104b5181 Mon Sep 17 00:00:00 2001 From: "junfeng.fj" Date: Sun, 9 May 2021 21:28:36 +0800 Subject: [PATCH] optimize tutorial-11 --- tutorial/tutorial-11-graph_task.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorial/tutorial-11-graph_task.cc b/tutorial/tutorial-11-graph_task.cc index d552d808..2f44e27a 100644 --- a/tutorial/tutorial-11-graph_task.cc +++ b/tutorial/tutorial-11-graph_task.cc @@ -26,7 +26,7 @@ using namespace protocol; static WFFacilities::WaitGroup wait_group(1); -void go_func(size_t *size1, size_t *size2) +void go_func(const size_t *size1, const size_t *size2) { printf("page1 size = %zu, page2 size = %zu\n", *size1, *size2); } @@ -45,7 +45,7 @@ void http_callback(WFHttpTask *task) #define REDIRECT_MAX 3 #define RETRY_MAX 1 -int main(void) +int main() { WFTimerTask *timer; WFHttpTask *http_task1; @@ -70,7 +70,7 @@ int main(void) http_callback); http_task2->user_data = &size2; - /* go task will print the http pages's size */ + /* go task will print the http pages size */ go_task = WFTaskFactory::create_go_task("go", go_func, &size1, &size2); /* Create a graph. Graph is also a kind of task */