Skip to content

Commit 8bd4712

Browse files
committed
fix(eppp): Fixed defalt config designated init issue in C++
1 parent b9c675b commit 8bd4712

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)