From ec9096be401739b6a587ddc00217593e7d6a9e41 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Wed, 10 May 2017 13:41:26 +0200 Subject: [PATCH] fixed typo in httpd debug message --- src/apps/httpd/httpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/httpd/httpd.c b/src/apps/httpd/httpd.c index 9b12fbf5..2ffb1b0d 100644 --- a/src/apps/httpd/httpd.c +++ b/src/apps/httpd/httpd.c @@ -537,7 +537,7 @@ http_write(struct altcp_pcb *pcb, const void* ptr, u16_t *length, u8_t apiflags) } #endif /* HTTPD_MAX_WRITE_LEN */ do { - LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Trying go send %d bytes\n", len)); + LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Trying to send %d bytes\n", len)); err = altcp_write(pcb, ptr, len, apiflags); if (err == ERR_MEM) { if ((altcp_sndbuf(pcb) == 0) ||