From bf39c2a60b8442fe6321f6ac4699aeb93d741d11 Mon Sep 17 00:00:00 2001 From: DrMaxNix Date: Fri, 29 Apr 2022 18:52:56 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20make=20booleans=20have?= =?UTF-8?q?=20correct=20type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- phoenix-upshid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phoenix-upshid.c b/phoenix-upshid.c index 2499b19..5b31ba4 100644 --- a/phoenix-upshid.c +++ b/phoenix-upshid.c @@ -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); }