Skip to content

Commit

Permalink
remove incorrect error assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
sroychow committed Aug 22, 2023
1 parent 2719b85 commit a2b7125
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,12 +209,11 @@ namespace pixelgpudetails {
case (29): {
if constexpr (debug)
printf("Timeout on a channel (errorType = 29)\n");
errorFound = true;
if (!((errorWord >> sipixelconstants::OMIT_ERR_shift) & sipixelconstants::OMIT_ERR_mask)) {
if constexpr (debug)
printf("...2nd errorType=29 error, skip\n");
errorFound = false;
}
errorFound = true;
break;
}
case (30): {
Expand Down

0 comments on commit a2b7125

Please sign in to comment.