From a2bebe93ba9361512a00b73fdc8119b2c951e652 Mon Sep 17 00:00:00 2001 From: awuctl <61098069+awuctl@users.noreply.github.com> Date: Wed, 24 Aug 2022 09:34:44 +0200 Subject: [PATCH] fix mistake in removability bit --- hwid_dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hwid_dec.c b/hwid_dec.c index 7654a25..f0bc75a 100644 --- a/hwid_dec.c +++ b/hwid_dec.c @@ -73,7 +73,7 @@ void print_block(uint8_t *hw_block) { printf("RAM hash : [%02x]\n", hwid->hashRAM); printf("SMBIOS hash : [%04x]\n", hwid->hashBIOS); for(size_t i = 0; i < instance_count; i++) { - printf("Hash (%02zx) : [%04x] %s\n", i, hwid->instanceHashes[i], (hwid->instanceHashes[i] & 1) == 1 ? "[[Non-Removable]]" : ""); + printf("Hash (%02zx) : [%04x] %s\n", i, hwid->instanceHashes[i], (hwid->instanceHashes[i] & 1) == 1 ? "[[Removable]]" : ""); } puts("");