Skip to content
Snippets Groups Projects
Commit 88e77be9 authored by rswindell's avatar rswindell
Browse files

Fixed gcc warning in call to xmodem_init().

parent c5fd1fdc
No related branches found
No related tags found
No related merge requests found
......@@ -1412,7 +1412,7 @@ int main(int argc, char **argv)
RingBufInit(&inbuf, IO_THREAD_BUF_SIZE);
RingBufInit(&outbuf, IO_THREAD_BUF_SIZE);
xmodem_init(&xm,INVALID_SOCKET,&mode,lputs,send_byte,recv_byte);
xmodem_init(&xm,NULL,&mode,lputs,send_byte,recv_byte);
/* Generate path/sexyz[.host].ini from path/sexyz[.exe] */
SAFECOPY(str,argv[0]);
......
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