aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-05-26 10:07:44 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-05-26 10:07:44 +0000
commit04a68710857b5583d3704c65cf74ff7bf9b59d6e (patch)
treee74c19103c6d5e772c63ca563407b30b25a2d979 /demos
parentd1cad4edb86a9a4bd70bb9eb232c21f9540bbb0d (diff)
downloadChibiOS-04a68710857b5583d3704c65cf74ff7bf9b59d6e.tar.gz
ChibiOS-04a68710857b5583d3704c65cf74ff7bf9b59d6e.tar.bz2
ChibiOS-04a68710857b5583d3704c65cf74ff7bf9b59d6e.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@307 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos')
-rw-r--r--demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c b/demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c
index 127304295..2a45309f5 100644
--- a/demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c
+++ b/demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c
@@ -54,7 +54,7 @@ static void network_device_send(void) {
BufDescriptorEntry *bdep;
for (i = 0; i < SEND_RETRY_MAX; i++) {
- if ((bdep = EMACGetTransmitbuffer()) != NULL) {
+ if ((bdep = EMACGetTransmitBuffer()) != NULL) {
uint8_t *bp = (uint8_t *)bdep->w1;
if(uip_len <= UIP_LLH_LEN + UIP_TCPIP_HLEN)