executor: remove unneeded NONFAILING

copyin is already NONFAILING.
This commit is contained in:
Dmitry Vyukov 2017-12-14 17:04:51 +01:00
parent 26eab5e866
commit 9c21f3116f

View File

@ -367,7 +367,7 @@ retry:
}
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: