- Timestamp:
- Oct 20, 2016 7:54:15 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/ACPI/VBoxAcpi.cpp
r62890 r64345 229 229 230 230 /* Processor ID */ 231 if (pabAmlCpu[idxAmlCpu+8] < cNumCpus) 231 uint8_t const idAmlCpu = pabAmlCpu[idxAmlCpu + 8]; 232 if (idAmlCpu < cNumCpus) 232 233 { 233 LogFlow(("CPU % d is configured\n", pabAmlCpu[idxAmlCpu+8]));234 LogFlow(("CPU %u is configured\n", idAmlCpu)); 234 235 fCpuConfigured = true; 235 break;236 236 } 237 237 else 238 238 { 239 LogFlow(("CPU % d is not configured\n", pabAmlCpu[idxAmlCpu+8]));239 LogFlow(("CPU %u is not configured\n", idAmlCpu)); 240 240 fCpuConfigured = false; 241 break;242 241 } 242 break; 243 243 } 244 244 }
Note:
See TracChangeset
for help on using the changeset viewer.