mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
lws_struct: clean warning on windows
This commit is contained in:
parent
0b0482c127
commit
ef787e578c
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ lws_struct_schema_only_lejp_cb(struct lejp_ctx *ctx, char reason)
|
|||
|
||||
while (n--) {
|
||||
const lws_struct_map_t *child = map->child_map;
|
||||
int m, child_members = map->child_map_size;
|
||||
int m, child_members = (int)map->child_map_size;
|
||||
|
||||
for (m = 0; m < child_members; m++) {
|
||||
if (!strcmp(ctx->path, child->colname)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue