diff options
| author | Poommetee Ketson | 2018-04-20 16:25:06 +0700 |
|---|---|---|
| committer | Hein-Pieter van Braam | 2018-04-29 14:32:44 +0200 |
| commit | 2f82b670716c8b1188db8cb036fe5b7dea0fc490 (patch) | |
| tree | d2ebf0b9ddda79e70985e013c90654ce4433f5db /drivers/unix/ip_unix.cpp | |
| parent | 56b8c4b0ebce21f71a1e4c34ffe5d04a1a28683f (diff) | |
| download | godot-2f82b670716c8b1188db8cb036fe5b7dea0fc490.tar.gz godot-2f82b670716c8b1188db8cb036fe5b7dea0fc490.tar.zst godot-2f82b670716c8b1188db8cb036fe5b7dea0fc490.zip | |
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 032d91f0d..a7fb0c388 100644 --- a/drivers/unix/ip_unix.cpp +++ b/drivers/unix/ip_unix.cpp @@ -105,7 +105,7 @@ IP_Address IP_Unix::_resolve_hostname(const String &p_hostname, Type p_type) { int s = getaddrinfo(p_hostname.utf8().get_data(), NULL, &hints, &result); if (s != 0) { - ERR_PRINT("getaddrinfo failed!"); + ERR_PRINT("getaddrinfo failed! Cannot resolve hostname."); return IP_Address(); }; |
