Skip to content

Commit f26f2f8

Browse files
authored
Merge pull request #537 from david-cermak/fix/eppp_cxx_init
fix(eppp): Fixed default config designated init issue in C++
2 parents cb682a7 + 8bd4712 commit f26f2f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/eppp_link/include/eppp_link.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
.priority = 8, \
3636
}, \
3737
. ppp = { \
38-
.our_ip4_addr.addr = our_ip, \
39-
.their_ip4_addr.addr = their_ip, \
38+
.our_ip4_addr = { .addr = our_ip }, \
39+
.their_ip4_addr = { .addr = their_ip }, \
4040
} \
4141
}
4242

0 commit comments

Comments
 (0)