242c242
< (uint8_t *)(&nullDescriptor), 8);
---
> &nullDescriptor, 8);
263c263
< (uint8_t *)(&csLowPLDescVal), 8);
---
> &csLowPLDescVal, 8);
277c277
< (uint8_t *)(&dsLowPLDescVal), 8);
---
> &dsLowPLDescVal, 8);
291c291
< (uint8_t *)(&dsDescVal), 8);
---
> &dsDescVal, 8);
305c305
< (uint8_t *)(&csDescVal), 8);
---
> &csDescVal, 8);
338c338
< (uint8_t *)(&tssDescVal), sizeof(tssDescVal));
---
> &tssDescVal, sizeof(tssDescVal));
503c503
< physProxy.writeBlob(tssPhysAddr, (uint8_t *)(&tss), sizeof(tss));
---
> physProxy.writeBlob(tssPhysAddr, &tss, sizeof(tss));
523,524c523
< physProxy.writeBlob(idtPhysAddr + 0xE0,
< (uint8_t *)(&PFGate), sizeof(PFGate));
---
> physProxy.writeBlob(idtPhysAddr + 0xE0, &PFGate, sizeof(PFGate));
1002c1001
< initVirtMem.writeBlob(sentry_base, (uint8_t*)&sentry_NULL, sentry_size);
---
> initVirtMem.writeBlob(sentry_base, &sentry_NULL, sentry_size);
1032c1031
< initVirtMem.writeBlob(argc_base, (uint8_t*)&guestArgc, intSize);
---
> initVirtMem.writeBlob(argc_base, &guestArgc, intSize);