Skip to content
Snippets Groups Projects
Commit e6cd92d9 authored by Ivica Bukvic's avatar Ivica Bukvic
Browse files

*fixed compile-time warnings

parent 095f0e92
No related branches found
No related tags found
No related merge requests found
......@@ -449,8 +449,8 @@ static int socketreceiver_doread(t_socketreceiver *x)
binbuf_text(inbinbuf, messbuf, bp - messbuf);
if (sys_debuglevel & DEBUG_MESSDOWN)
{
write(2, messbuf, bp - messbuf);
write(2, "\n", 1);
int res = write(2, messbuf, bp - messbuf);
res = write(2, "\n", 1);
}
x->sr_inhead = inhead;
x->sr_intail = intail;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment