Fix the minor style issue

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2022-10-08 16:31:21 +08:00
committed by Petro Karashchenko
parent 4941182cc6
commit 893387b2c5
112 changed files with 605 additions and 576 deletions

View File

@@ -131,7 +131,7 @@ struct curl4nx_s
uint32_t flags;
bool verbose;
curl4nx_xferinfofunc_f progressfunc; /* Called when data chunks are received */
FAR void * progressdata;
FAR void *progressdata;
/* Request side */
@@ -145,21 +145,21 @@ struct curl4nx_s
int max_redirs;
curl4nx_iofunc_f writefunc; /* Called when data has to be uploaded */
FAR void * writedata;
FAR void *writedata;
/* Response side */
int rxbufsize;
FAR char * rxbuf;
FAR char *rxbuf;
int status;
unsigned long long content_length;
curl4nx_iofunc_f readfunc; /* Called when data has to be downloaded */
FAR void * readdata;
FAR void *readdata;
curl4nx_iofunc_f headerfunc; /* Called when a complete HTTP header has been received */
FAR void * headerdata;
FAR void *headerdata;
};
/****************************************************************************