indilib / indi-3rdparty

INDI 3rd Party drivers repository
https://www.indilib.org/devices.html
GNU Lesser General Public License v2.1
123 stars 208 forks source link

Fix issues to build successfully #927

Closed naheedsa closed 3 months ago

naheedsa commented 3 months ago

@knro , Fixed errors. It was built successfully with latest changes.

knro commented 3 months ago

Please check the build errors as well:

for (int i = 0; i < RotatorSettingsNP.count(); i++)

You can change this to:

for (size_t i = 0; i < RotatorSettingsNP.count(); i++)

naheedsa commented 3 months ago

Please check the build errors as well:

for (int i = 0; i < RotatorSettingsNP.count(); i++)

You can change this to:

for (size_t i = 0; i < RotatorSettingsNP.count(); i++)

sure, the build errors on github?