forked from M-Labs/artiq
runtime/artiq_personality: add missing cast.
This commit is contained in:
parent
cb90bf6ef3
commit
71d8cbb431
|
@ -423,7 +423,8 @@ _Unwind_Reason_Code __artiq_personality(
|
||||||
encodingSize, typeInfoPtrPtr, (void*)typeInfoPtr);
|
encodingSize, typeInfoPtrPtr, (void*)typeInfoPtr);
|
||||||
EH_LOG("typeInfo=%s", (char*)typeInfoPtr);
|
EH_LOG("typeInfo=%s", (char*)typeInfoPtr);
|
||||||
|
|
||||||
if(typeInfoPtr == 0 || !strcmp(inflight->artiq.typeinfo, (char*)typeInfoPtr)) {
|
if(typeInfoPtr == 0 || !strcmp((char*)inflight->artiq.typeinfo,
|
||||||
|
(char*)typeInfoPtr)) {
|
||||||
EH_LOG0("matching action found");
|
EH_LOG0("matching action found");
|
||||||
exceptionMatched = 1;
|
exceptionMatched = 1;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue