diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-12 14:17:05 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-12 14:17:33 -0600 |
commit | b4a081932338f65aa87aeba5008463feb0a78519 (patch) | |
tree | ce628075a2ae59d5362d2662465c918f57e81607 /libdhcp/dhcp_client.c | |
parent | 42729f477684b12735b572a4975d32fb1002a530 (diff) |
More GCC 15 fixes
Diffstat (limited to 'libdhcp/dhcp_client.c')
-rw-r--r-- | libdhcp/dhcp_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdhcp/dhcp_client.c b/libdhcp/dhcp_client.c index 2d0ebe6..a561cbf 100644 --- a/libdhcp/dhcp_client.c +++ b/libdhcp/dhcp_client.c @@ -297,7 +297,7 @@ static bool dhcp_client_send(struct dhcp_client *client, uint8_t msgtyp, const c * Build the message * \**********************************************************************/ - *scratch_msg = (struct dhcp_msg){0}; + *scratch_msg = (struct dhcp_msg){}; size_t optlen = 0; /* Base structure. |