You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not running a RPiHQ camera but during the install I see the following I have a ZWO camera but wanted to share what I see.
capture_RPiHQ.cpp: In function ‘int main(int, char**)’:
capture_RPiHQ.cpp:829:14: warning: variable ‘ImgExtraText’ set but not used [-Wu nused-but-set-variable]
char const *ImgExtraText = "";
^~~~~~~~~~~~
capture_RPiHQ.cpp:830:6: warning: variable ‘extraFileAge’ set but not used [-Wun used-but-set-variable]
int extraFileAge = 0; // 0 disables it
The text was updated successfully, but these errors were encountered:
The "extra text" file hasn't yet been fully implemented in the RPiHQ capture program, but variables to activate it are there. This causes compiler messages about "variable set but not used". This is not an issue, but some users have mentioned it, thinking it's an error.
I added a dummy line to keep the compiler quiet. This line will be removed when the "extra text" file is implemented.
Fixes#833.
@maserowik, thanks Mike. The "extra text file" hasn't been fully implemented in the RPiHQ version. These message aren't an issue, but I just created a fix to eliminate the messages as I realize they can be concerning to people.
I am not running a RPiHQ camera but during the install I see the following I have a ZWO camera but wanted to share what I see.
capture_RPiHQ.cpp: In function ‘int main(int, char**)’:
capture_RPiHQ.cpp:829:14: warning: variable ‘ImgExtraText’ set but not used [-Wu nused-but-set-variable]
char const *ImgExtraText = "";
^~~~~~~~~~~~
capture_RPiHQ.cpp:830:6: warning: variable ‘extraFileAge’ set but not used [-Wun used-but-set-variable]
int extraFileAge = 0; // 0 disables it
The text was updated successfully, but these errors were encountered: