summaryrefslogtreecommitdiff
path: root/src/tcp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tcp.c')
-rw-r--r--src/tcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tcp.c b/src/tcp.c
index 84c4e03..fbfc312 100644
--- a/src/tcp.c
+++ b/src/tcp.c
@@ -127,7 +127,7 @@ error:
void tcp_packet_send(struct tcp_conn_t *conn, struct http_packet_t *pkt)
{
send(conn->sd, pkt->buffer, pkt->filled_size, 0);
- printf("Note: sent %lu bytes over tcp\n", pkt->filled_size);
+ NOTE("sent %lu bytes over tcp\n", pkt->filled_size);
}