1
0
mirror of https://github.com/rofl0r/proxychains-ng synced 2025-01-23 01:12:59 +08:00

Fix trivial compilation warning

Fix "missing braces around initializer" warning.
This commit is contained in:
Carlos Maddela 2016-06-08 11:50:30 +10:00
parent 5333c99fc4
commit 4d839bceba

View File

@ -1,5 +1,5 @@
#include "ip_type.h"
const ip_type ip_type_invalid = { .addr.v4.as_int = -1 };
const ip_type ip_type_localhost = { .addr.v4 = {127, 0, 0, 1} };
const ip_type ip_type_localhost = { .addr.v4.octet = {127, 0, 0, 1} };