[v0.94] Fix compilation issues

This commit is contained in:
Dr-Noob
2020-12-01 16:13:38 +01:00
parent b1f3196e0d
commit 01e22b8090
5 changed files with 10 additions and 4 deletions

View File

@@ -211,7 +211,7 @@ struct cpuInfo* get_cpu_info() {
cpu->feat = feat;
bool *ptr = &(feat->AES);
for(int i = 0; i < sizeof(struct features)/sizeof(bool); i++, *ptr++) {
for(uint32_t i = 0; i < sizeof(struct features)/sizeof(bool); i++, ptr++) {
*ptr = false;
}