Removed left-over debug printout

This commit is contained in:
Adam Dunkels 2016-11-02 21:54:15 +01:00
parent 869df3bc36
commit 36afb693b0

View file

@ -674,7 +674,6 @@ send_data(struct websocket *s, const void *data,
int
websocket_send_str(struct websocket *s, const char *str)
{
// PRINTF("websocket_send_str %s\n", str);
return send_data(s, str, strlen(str), WEBSOCKET_OPCODE_TEXT);
}
/*---------------------------------------------------------------------------*/