fixed int output

FossilOrigin-Name: d1a5f1995fe87a628d48ab2654a37876357de1697098c86743bbc3f4692791a8
This commit is contained in:
7u83@mail.ru 2018-03-29 07:36:54 +00:00
parent b1c406dcc1
commit fa785fe348
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ int cw_put_msg(struct conn *conn, uint8_t * rawout)
handler = cw_msgset_get_elemhandler(conn->msgset,data->proto,data->vendor,data->id);
/* printf("Elem: %d %d %d %s\n", data->proto, data->vendor, data->id, handler->name);*/
if (handler==NULL){
cw_log(LOG_ERR,"Can't put message element %d %d %, no handler defined.",
cw_log(LOG_ERR,"Can't put message element %d %d %d, no handler defined.",
data->proto,data->vendor,data->id);
continue;
}