From c307100af04e54067d9bdaa786306b63cf12d442 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 14 Nov 2013 17:49:36 +0100 Subject: swrap: Fix wrong initializers. --- src/socket_wrapper.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/socket_wrapper.c b/src/socket_wrapper.c index e9af3e5..0031cb7 100644 --- a/src/socket_wrapper.c +++ b/src/socket_wrapper.c @@ -1232,10 +1232,10 @@ static const char *socket_wrapper_pcap_file(void) { static int initialized = 0; static const char *s = NULL; - static const struct swrap_file_hdr h = {0}; - static const struct swrap_packet_frame f = {0}; - static const union swrap_packet_ip i = {{0}}; - static const union swrap_packet_payload p = {{0}}; + static const struct swrap_file_hdr h; + static const struct swrap_packet_frame f; + static const union swrap_packet_ip i; + static const union swrap_packet_payload p; if (initialized == 1) { return s; -- cgit