diff options
author | Fabio Utzig <utzig@utzig.org> | 2016-04-05 18:05:02 -0300 |
---|---|---|
committer | Fabio Utzig <utzig@utzig.org> | 2016-04-05 18:05:02 -0300 |
commit | 7c6fc955f7f2e6eff0cc948e795023802ef4fa6b (patch) | |
tree | 9ade1a4393a91d1483d8a44f194f9da6164dc2cc /demos/TIVA | |
parent | 44ac27a5c51688a9180fca6dee63fb24d8660ade (diff) | |
download | ChibiOS-Contrib-7c6fc955f7f2e6eff0cc948e795023802ef4fa6b.tar.gz ChibiOS-Contrib-7c6fc955f7f2e6eff0cc948e795023802ef4fa6b.tar.bz2 ChibiOS-Contrib-7c6fc955f7f2e6eff0cc948e795023802ef4fa6b.zip |
Improve http_server declaration
Diffstat (limited to 'demos/TIVA')
-rw-r--r-- | demos/TIVA/RT-TM4C1294-LAUNCHPAD-LWIP/web/web.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/TIVA/RT-TM4C1294-LAUNCHPAD-LWIP/web/web.h b/demos/TIVA/RT-TM4C1294-LAUNCHPAD-LWIP/web/web.h index 11b245b..ed0fffd 100644 --- a/demos/TIVA/RT-TM4C1294-LAUNCHPAD-LWIP/web/web.h +++ b/demos/TIVA/RT-TM4C1294-LAUNCHPAD-LWIP/web/web.h @@ -41,7 +41,7 @@ extern THD_WORKING_AREA(wa_http_server, WEB_THREAD_STACK_SIZE); #ifdef __cplusplus extern "C" { #endif - void http_server(void *p); + THD_FUNCTION(http_server, p); #ifdef __cplusplus } #endif |