mirror of
https://github.com/curl/curl.git
synced 2026-07-23 22:57:17 +03:00
sws.c: Fixed compilation warning when IPv6 is disabled
sws.c:69: warning: comma at end of enumerator list
This commit is contained in:
parent
2b604eada5
commit
d784000a14
1 changed files with 2 additions and 2 deletions
|
|
@ -66,9 +66,9 @@
|
|||
#endif
|
||||
|
||||
static enum {
|
||||
socket_domain_inet = AF_INET,
|
||||
socket_domain_inet = AF_INET
|
||||
#ifdef ENABLE_IPV6
|
||||
socket_domain_inet6 = AF_INET6
|
||||
, socket_domain_inet6 = AF_INET6
|
||||
#endif
|
||||
} socket_domain = AF_INET;
|
||||
static bool use_gopher = FALSE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue