Slightly better warning message with +

This commit is contained in:
Bruce Hill 2019-10-13 19:36:25 -07:00
parent 55daca6a2f
commit 5ad09087c2

2
bb.c
View File

@ -750,7 +750,7 @@ void run_bbcmd(bb_t *bb, const char *cmd)
invalid_cmd:
fputs(T_LEAVE_BBMODE, tty_out);
restore_term(&orig_termios);
fprintf(stderr, "Invalid bb command: %s", cmd);
fprintf(stderr, "Invalid bb command: +%s", cmd);
fprintf(stderr, "\n");
init_term();
}