From f05e24ed18575e2f48270025c4c2bb0705c667b5 Mon Sep 17 00:00:00 2001 From: Poommetee Ketson Date: Fri, 20 Apr 2018 16:25:06 +0700 Subject: [DOCS] add HTTPRequest.request return values --- drivers/unix/ip_unix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/unix/ip_unix.cpp') diff --git a/drivers/unix/ip_unix.cpp b/drivers/unix/ip_unix.cpp index 032d91f0dc..a7fb0c3887 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(); }; -- cgit v1.2.3