mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-25 18:14:53 +00:00
Added unsigned qualifier to the struct members to avoid compiler warnings.
This commit is contained in:
parent
524bab33ba
commit
1be416fe0e
@ -34,15 +34,15 @@
|
|||||||
|
|
||||||
struct fsdata_file {
|
struct fsdata_file {
|
||||||
const struct fsdata_file *next;
|
const struct fsdata_file *next;
|
||||||
const char *name;
|
const unsigned char *name;
|
||||||
const char *data;
|
const unsigned char *data;
|
||||||
const int len;
|
const int len;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct fsdata_file_noconst {
|
struct fsdata_file_noconst {
|
||||||
struct fsdata_file *next;
|
struct fsdata_file *next;
|
||||||
char *name;
|
unsigned char *name;
|
||||||
char *data;
|
unsigned char *data;
|
||||||
int len;
|
int len;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user