apps/btshell: Fix typos on l2cap_create_server

This commit is contained in:
Michał Narajowski
2019-01-24 01:07:06 +01:00
parent e03c13e0e9
commit b97f1dc40d
+3 -1
View File
@@ -130,9 +130,11 @@ cmd_l2cap_create_server(int argc, char **argv)
rc = btshell_l2cap_create_srv(psm, accept_response);
if (rc) {
console_printf("Server create error: 0x%02x", rc);
console_printf("Server create error: 0x%02x\n", rc);
return rc;
}
console_printf("Server created successfully\n");
return 0;
}