diff --git a/src/x86/apic.c b/src/x86/apic.c index b7a2b28..7352016 100644 --- a/src/x86/apic.c +++ b/src/x86/apic.c @@ -184,7 +184,7 @@ uint32_t max_apic_id_size(uint32_t** cache_id_apic, struct topology* topo) { } max++; - if(max > topo->total_cores) return max; + if(max > (uint32_t) topo->total_cores) return max; return topo->total_cores; }