mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-10-17 07:12:06 +08:00
Fix the minor style issue
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:

committed by
Petro Karashchenko

parent
4941182cc6
commit
893387b2c5
@@ -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;
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
|
Reference in New Issue
Block a user