diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-10-02 21:03:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-02 21:03:59 +0200 |
commit | 642a258d5421776907e1c778735660b07622ec48 (patch) | |
tree | 71b045bb79e6d86b5f8b087707df85a9f3729e50 /drivers/unix/ip_unix.cpp | |
parent | 96b46a5c0074a36c353f9952bd7e8390bf90774e (diff) | |
parent | 3f32ac11cc7a883ce69ad33d2bd1fcb292483c5e (diff) |
Merge pull request #32492 from akien-mga/fix-ip-uwp
IP: Fix build error on UWP
Diffstat (limited to 'drivers/unix/ip_unix.cpp')
-rw-r--r-- | drivers/unix/ip_unix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/ip_unix.cpp b/drivers/unix/ip_unix.cpp index ac7195abc1..cf47cdc7e8 100644 --- a/drivers/unix/ip_unix.cpp +++ b/drivers/unix/ip_unix.cpp @@ -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); } |