Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/tinycsocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ struct TcsAddress
TcsAddressFamily family;
union
{
char _storage[24]; /**< Ensures full zero-initialization when copied from TCS_ADDRESS_NONE */
unsigned char _storage[24]; /**< Ensures full zero-initialization when copied from TCS_ADDRESS_NONE */
struct
{
uint32_t address; /**< Same byte order as the host */
Expand Down
2 changes: 1 addition & 1 deletion src/tinycsocket_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ struct TcsAddress
TcsAddressFamily family;
union
{
char _storage[24]; /**< Ensures full zero-initialization when copied from TCS_ADDRESS_NONE */
unsigned char _storage[24]; /**< Ensures full zero-initialization when copied from TCS_ADDRESS_NONE */
struct
{
uint32_t address; /**< Same byte order as the host */
Expand Down
Loading