1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

examples/nanocoap: use descriptive macro name

This commit is contained in:
Ken Bannister 2019-01-04 19:44:11 -05:00
parent 62f4946772
commit 7e31ffc424

View File

@ -121,7 +121,7 @@ ssize_t _sha256_handler(coap_pkt_t* pkt, uint8_t *buf, size_t len, void *context
sha256_update(&sha256, pkt->payload, pkt->payload_len);
if (block1.more == 1) {
result = COAP_CODE_231;
result = COAP_CODE_CONTINUE;
}
size_t result_len = 0;