Skip to content

Commit

Permalink
drivers: auxiliary: use stdint.h types (fix musl build) (indilib#1914)
Browse files Browse the repository at this point in the history
  • Loading branch information
thesamesam authored and knro committed Aug 12, 2023
1 parent 6f76cba commit 1e8cd93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/auxiliary/pegasus_upb.cpp
Expand Up @@ -1356,7 +1356,7 @@ bool PegasusUPB::sensorUpdated(const std::vector<std::string> &result, uint8_t s
//////////////////////////////////////////////////////////////////////
///
//////////////////////////////////////////////////////////////////////
bool PegasusUPB::stepperUpdated(const std::vector<std::string> &result, u_int8_t index)
bool PegasusUPB::stepperUpdated(const std::vector<std::string> &result, uint8_t index)
{
if (lastStepperData.empty())
return true;
Expand Down
2 changes: 1 addition & 1 deletion drivers/auxiliary/pegasus_upb.h
Expand Up @@ -141,7 +141,7 @@ class PegasusUPB : public INDI::DefaultDevice, public INDI::FocuserInterface, pu
* If the previous stepper data is empty then this will always
* return true.
*/
bool stepperUpdated(const std::vector<std::string> &result, u_int8_t index);
bool stepperUpdated(const std::vector<std::string> &result, uint8_t index);

int PortFD { -1 };
bool setupComplete { false };
Expand Down

0 comments on commit 1e8cd93

Please sign in to comment.