Missing TAG_DONE (thx capehill)

This commit is contained in:
Chris Young 2016-08-10 23:46:16 +01:00
parent 9aecf47408
commit ebb2a33b0b
2 changed files with 2 additions and 1 deletions

View File

@ -5550,7 +5550,7 @@ int main(int argc, char** argv)
/* Check for AltiVec */
uint32 altivec = 0;
GetCPUInfoTags(GCIT_VectorUnit, &altivec);
GetCPUInfoTags(GCIT_VectorUnit, &altivec, TAG_DONE);
if(altivec == VECTORTYPE_ALTIVEC) {
LOG("AltiVec detected");

View File

@ -375,5 +375,6 @@ void ami_schedule_handle(struct MsgPort *nsmsgport)
LOG("timereq err = %d (should be 0)", timermsg->timereq.Request.io_Error);
ami_scheduler_run(timermsg);
};
LOG("timermsg %p (0)", timermsg);
}