diff options
| author | awuctl | 2022-08-24 07:34:44 +0000 |
|---|---|---|
| committer | awuctl | 2022-08-24 07:34:44 +0000 |
| commit | a2bebe93ba9361512a00b73fdc8119b2c951e652 (patch) | |
| tree | 8abed005f62b4ab8cb5836a51e0934f0072b45e6 | |
| parent | c8c9e8e731cfcf9db49182e58ea94a5289cfd8b6 (diff) | |
| download | hwid-stuff-a2bebe93ba9361512a00b73fdc8119b2c951e652.zip | |
fix mistake in removability bit
| -rw-r--r-- | hwid_dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(""); |
