Skip to content

Commit

Permalink
executor: remove unneeded NONFAILING
Browse files Browse the repository at this point in the history
copyin is already NONFAILING.
  • Loading branch information
dvyukov committed Dec 17, 2017
1 parent 26eab5e commit 9c21f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion executor/executor.h
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ void execute_one()
}
int16_t csum_value = csum_inet_digest(&csum);
debug("writing inet checksum %hx to %llx\n", csum_value, csum_addr);
NONFAILING(copyin(csum_addr, csum_value, 2, 0, 0));
copyin(csum_addr, csum_value, 2, 0, 0);
break;
}
default:
Expand Down

0 comments on commit 9c21f31

Please sign in to comment.