diff options
Diffstat (limited to 'src/nxt_conf.c')
-rw-r--r-- | src/nxt_conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_conf.c b/src/nxt_conf.c index d162a80c..c091b260 100644 --- a/src/nxt_conf.c +++ b/src/nxt_conf.c @@ -339,7 +339,7 @@ nxt_conf_map_object(nxt_conf_value_t *value, nxt_conf_map_t *map, void *data) switch (map[i].type) { case NXT_CONF_MAP_INT32: - ptr->ui8 = v->u.integer; + ptr->i32 = v->u.integer; break; case NXT_CONF_MAP_INT64: |