aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Cameron <quozl@laptop.org>2016-09-24 18:46:21 +1000
committerJames Cameron <quozl@laptop.org>2016-09-24 18:49:24 +1000
commit3b53b839c77e19277958f7b4dd629565829cf816 (patch)
tree81d830ccda9b5682688cd63d19935bc8b569488f
parentbc54c168dc410152b4b088f04941a09fa2cc76ff (diff)
downloadcforth-3b53b839c77e19277958f7b4dd629565829cf816.tar.gz
ESP8266 TCP - fix stack effect comment
-rw-r--r--src/app/esp8266/tcpnew.fth2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/esp8266/tcpnew.fth b/src/app/esp8266/tcpnew.fth
index 4a422b5..d2312c3 100644
--- a/src/app/esp8266/tcpnew.fth
+++ b/src/app/esp8266/tcpnew.fth
@@ -72,7 +72,7 @@ defer respond ( pcb -- close? )
\ gives no indication what other values might mean. I assume that
\ the err argument is present only for consistency with other callbacks.
drop to rx-pcb nip ( pbuf )
- ?dup 0= if ( pbuf )
+ ?dup 0= if ( )
." Connection closed" cr cr
rx-pcb close-connection ( )
\ This is a normal termination, not a premature abort