1
0
Fork 0
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:
Andy Green 2020-05-24 14:08:47 +01:00
parent 0b0482c127
commit ef787e578c

View file

@ -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)) {