wireless/bluetooth/btsak: Correct format of help for GATT commands.

This commit is contained in:
Gregory Nutt 2018-04-19 09:23:25 -06:00
parent f78e3dc136
commit 9078b066b6

View File

@ -688,7 +688,7 @@ void btsak_gatt_showusage(FAR const char *progname, FAR const char *cmd,
FAR const struct btsak_command_s *gattcmd = &g_btsak_gatt_commands[i];
if (gattcmd->help != NULL)
{
fprintf(stderr, "\t%-10gdbs\t%s\n", gattcmd->name, gattcmd->help);
fprintf(stderr, "\t%-10s\t%s\n", gattcmd->name, gattcmd->help);
}
else
{