diff options
| author | Poommetee Ketson | 2018-04-20 16:25:06 +0700 |
|---|---|---|
| committer | Poommetee Ketson | 2018-04-20 16:34:30 +0700 |
| commit | f05e24ed18575e2f48270025c4c2bb0705c667b5 (patch) | |
| tree | a64898e5f793655cd1ebb9918cc3ada6492a2867 /drivers/unix | |
| parent | 59b816679e1c87d17ec48bfb5677fb9ff8a9ce5d (diff) | |
| download | godot-f05e24ed18575e2f48270025c4c2bb0705c667b5.tar.gz godot-f05e24ed18575e2f48270025c4c2bb0705c667b5.tar.zst godot-f05e24ed18575e2f48270025c4c2bb0705c667b5.zip | |
Diffstat (limited to 'drivers/unix')
| -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(); }; |
