patacongo commented on a change in pull request #357: URL: https://github.com/apache/incubator-nuttx-apps/pull/357#discussion_r468636359
########## File path: netutils/ftpc/ftpc_connect.c ########## @@ -152,8 +148,8 @@ int ftpc_reconnect(FAR struct ftpc_session_s *session) /* Set up a timer to prevent hangs */ - ret = wd_start(session->wdog, - session->conntimeo, ftpc_timeout, 1, session); + ret = wd_start(&session->wdog, session->conntimeo, Review comment: Hmm.. this is another violation of the portable POSIX OS interface. wd_start(0 is not an application accessible interface. It is only for use inside the OS. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org