Skip to content

Commit

Permalink
Contiki-NG: Fix compilation error "unknown type name 'u_char'"
Browse files Browse the repository at this point in the history
  • Loading branch information
kkrentz authored and mrdeep1 committed Jul 4, 2024
1 parent cab876a commit a1a16f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coap_uri.c
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ coap_uri_into_optlist(const coap_uri_t *uri, const coap_address_t *dst,
break;
}
if (add_option) {
u_char tbuf[4];
uint8_t tbuf[4];

coap_insert_optlist(optlist_chain,
coap_new_optlist(COAP_OPTION_URI_PORT,
Expand Down

0 comments on commit a1a16f3

Please sign in to comment.