Merge pull request #32492 from akien-mga/fix-ip-uwp

IP: Fix build error on UWP
This commit is contained in:
Rémi Verschelde 2019-10-02 21:03:59 +02:00 committed by GitHub
commit 642a258d54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -152,7 +152,7 @@ void IP_Unix::get_local_interfaces(Map<String, Interface_Info> *r_interfaces) co
Interface_Info info;
info.name = name;
info.name_friendly = hostname->DisplayName->Data();
info.index = 0;
info.index = String::num_uint64(0);
E = r_interfaces->insert(name, info);
ERR_CONTINUE(!E);
}