Adjust indents [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2020-08-27 23:39:15 +09:00
parent b8bfb1d5f5
commit 96d701f737
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6
2 changed files with 14 additions and 14 deletions

View File

@ -1182,11 +1182,11 @@ sock_s_getaddrinfo(int argc, VALUE *argv, VALUE _)
norevlookup = rsock_do_not_reverse_lookup;
}
#ifdef HAVE_GETADDRINFO_A
#ifdef HAVE_GETADDRINFO_A
res = rsock_getaddrinfo_a(host, port, &hints, 0, Qnil);
#else
#else
res = rsock_getaddrinfo(host, port, &hints, 0);
#endif
#endif
ret = make_addrinfo(res, norevlookup);
rb_freeaddrinfo(res);