🏷️ make booleans have correct type

This commit is contained in:
DrMaxNix 2022-04-29 18:52:56 +02:00 committed by GitHub
parent ba3511c4e7
commit bf39c2a60b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ void print_version();
// PUBLIC FLAGS //
int auto_usbreset = false;
bool auto_usbreset = false;
uint16_t vendor_id;
uint16_t product_id;
@ -497,7 +497,7 @@ void usbreset(){
HELPER: Print version and exit
*/
void print_version(){
printf("phoenix-upshid v1.0.1 | (c) DrMaxNix 2022 | www.drmaxnix.de/phoenix-upshid\n");
printf("phoenix-upshid v1.0.2-a | (c) DrMaxNix 2022 | www.drmaxnix.de/phoenix-upshid\n");
exit(0);
}