Skip to content

Commit

Permalink
apps/btshell: fix cmd_l2cap_reconfig command
Browse files Browse the repository at this point in the history
parse_arg_byte_stream_custom takes unsigned int as argument for result
lenght.
  • Loading branch information
KKopyscinski committed Sep 26, 2023
1 parent 9616b92 commit fa27890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/btshell/src/cmd_l2cap.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ cmd_l2cap_reconfig(int argc, char **argv)
uint16_t conn;
uint16_t mtu;
uint8_t idxs[5];
int num;
unsigned int num;
int rc;

rc = parse_arg_init(argc - 1, argv + 1);
Expand Down

0 comments on commit fa27890

Please sign in to comment.