From 5ad09087c29fbd071f6b0d882b95fb116b2b43a2 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 13 Oct 2019 19:36:25 -0700 Subject: [PATCH] Slightly better warning message with + --- bb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bb.c b/bb.c index 22c8065..902d9ce 100644 --- a/bb.c +++ b/bb.c @@ -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(); }