apps/btshell: fix cmd_l2cap_reconfig command

parse_arg_byte_stream_custom takes unsigned int as argument for result
lenght.
This commit is contained in:
Krzysztof Kopyściński
2023-09-26 11:50:46 +02:00
committed by Szymon Janc
parent 9616b929d2
commit 5d764711e3
+1 -1
View File
@@ -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);