diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2020-05-13 05:31:51 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2020-06-03 00:03:34 -0400 |
commit | bb8aa107fd064a095479350bd22b1ce3ed146784 (patch) | |
tree | a92201554e694ece66c0877f63932b02a2432bd6 /drivers | |
parent | 030a26206ff70b1050c885270afce89b0430af70 (diff) |
Remove 32-bit String to_int method
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/unix/net_socket_posix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/net_socket_posix.cpp b/drivers/unix/net_socket_posix.cpp index 15ad187ab4..186804dbb1 100644 --- a/drivers/unix/net_socket_posix.cpp +++ b/drivers/unix/net_socket_posix.cpp @@ -245,7 +245,7 @@ _FORCE_INLINE_ Error NetSocketPosix::_change_multicast_group(IP_Address p_ip, St continue; } - if_v6id = (uint32_t)c.index.to_int64(); + if_v6id = (uint32_t)c.index.to_int(); if (type == IP::TYPE_IPV6) { break; // IPv6 uses index. } |