diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2021-10-05 21:22:09 +0200 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2021-10-05 21:22:59 +0200 |
commit | a909fd5e7a155e55570b12f75544e22440ac03a2 (patch) | |
tree | e23c2131b3f5b8f6442384006bd1aa16f4b20715 | |
parent | 16f4b983de5509660f470992f3ce8e5cd1d59c3b (diff) | |
download | passt-a909fd5e7a155e55570b12f75544e22440ac03a2.tar passt-a909fd5e7a155e55570b12f75544e22440ac03a2.tar.gz passt-a909fd5e7a155e55570b12f75544e22440ac03a2.tar.bz2 passt-a909fd5e7a155e55570b12f75544e22440ac03a2.tar.lz passt-a909fd5e7a155e55570b12f75544e22440ac03a2.tar.xz passt-a909fd5e7a155e55570b12f75544e22440ac03a2.tar.zst passt-a909fd5e7a155e55570b12f75544e22440ac03a2.zip |
conf: Silence gcc -Os warning
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r-- | conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -850,7 +850,7 @@ void conf(struct ctx *c, int argc, char **argv) uint32_t *dns4 = c->dns4; do { - enum conf_port_type *set; + enum conf_port_type *set = NULL; const char *optstring; if (c->mode == MODE_PASST) |