Skip to content

Commit

Permalink
fix(eppp): Fixed defalt config designated init issue in C++
Browse files Browse the repository at this point in the history
  • Loading branch information
david-cermak committed Mar 25, 2024
1 parent b9c675b commit 8bd4712
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/eppp_link/include/eppp_link.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
.priority = 8, \
}, \
. ppp = { \
.our_ip4_addr.addr = our_ip, \
.their_ip4_addr.addr = their_ip, \
.our_ip4_addr = { .addr = our_ip }, \
.their_ip4_addr = { .addr = their_ip }, \
} \
}

Expand Down

0 comments on commit 8bd4712

Please sign in to comment.