1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

convert: fix initialization of struct io's

This commit is contained in:
Steffen Vogel 2018-06-16 20:52:11 +02:00
parent 356c4695d9
commit 84b18e23bf

View file

@ -82,7 +82,8 @@ check: if (optarg == endptr)
struct format_type *fmt;
struct log log;
struct io input, output;
struct io input = { .state = STATE_DESTROYED };
struct io output = { .state = STATE_DESTROYED };
ret = log_init(&log, level, LOG_ALL);
if (ret)