netutils/ftpc/ftpc_putfile.c: Appease nxstyle

This commit is contained in:
YAMAMOTO Takashi 2020-11-25 07:29:18 +09:00 committed by Xiang Xiao
parent 7b3ccfa9da
commit 2a3f2ea8c6

View File

@ -91,7 +91,8 @@ static int ftpc_sendbinary(FAR struct ftpc_session_s *session,
{
/* Read data from the file */
nread = fread(session->buffer, sizeof(char), CONFIG_FTP_BUFSIZE, linstream);
nread = fread(session->buffer, sizeof(char), CONFIG_FTP_BUFSIZE,
linstream);
if (nread <= 0)
{
/* nread == 0 is just EOF */
@ -278,6 +279,7 @@ static int ftpc_sendfile(struct ftpc_session_s *session, const char *path,
rname = strndup(str, len - 1);
ninfo("Unique filename is: %s\n", rname);
}
free(rname);
}
}