From 2280000a296faacbcdc696aaf7cee979318eb24e Mon Sep 17 00:00:00 2001 From: Jason Reiss Date: Thu, 30 May 2019 09:31:31 -0500 Subject: [PATCH] Fix use of decoder type Build was not successful when CFG_prod is defined. --- src-linux/sys_linux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-linux/sys_linux.c b/src-linux/sys_linux.c index f8286c8..a41109e 100644 --- a/src-linux/sys_linux.c +++ b/src-linux/sys_linux.c @@ -724,8 +724,8 @@ static int parseStationConf () { case J_nodc: case J_nodwell: case J_device_mode: { - LOG(MOD_S2E|WARNING, "Feature not supported in production level code (station.conf) - ignored: %s", D->field.name); - uj_skipValue(D); + LOG(MOD_S2E|WARNING, "Feature not supported in production level code (station.conf) - ignored: %s", D.field.name); + uj_skipValue(&D); break; } #else // !defined(CFG_prod)