Fix compiler warnings over const losses.
This commit is contained in:
parent
d0373af5c0
commit
2d9c701c37
13 changed files with 22 additions and 22 deletions
|
|
@ -15,9 +15,9 @@ typedef enum {
|
|||
} HTTP_Client_State;
|
||||
|
||||
typedef struct {
|
||||
char * server;
|
||||
char * port;
|
||||
char * path;
|
||||
const char * server;
|
||||
const char * port;
|
||||
const char * path;
|
||||
char * buffer;
|
||||
uint16_t buffer_size;
|
||||
http_final_cb buffer_full_cb;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue