Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix unknown type name 'u_int16_t' (clang arm-linux-musleabi) #9158

Merged
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -1532,7 +1532,7 @@ static void startColorLoop(EndpointId endpoint, uint8_t startFromStartHue)
uint16_t currentHue = 0;
Attributes::GetEnhancedCurrentHue(endpoint, &currentHue);

u_int16_t startHue = 0x2300;
uint16_t startHue = 0x2300;
if (startFromStartHue)
{
Attributes::GetColorLoopStartEnhancedHue(endpoint, &startHue);
Expand Down