Remove echo of tokenised terminal command

This commit is contained in:
Stefan Rueger 2022-07-12 11:51:04 +01:00
parent c5f522342d
commit 56113f6d8a
1 changed files with 3 additions and 2 deletions

View File

@ -1388,7 +1388,6 @@ char * terminal_get_input(const char *prompt)
int terminal_mode(PROGRAMMER * pgm, struct avrpart * p)
{
char * cmdbuf;
int i;
char * q;
int rc;
int argc;
@ -1414,10 +1413,12 @@ int terminal_mode(PROGRAMMER * pgm, struct avrpart * p)
return argc;
}
#if 0
fprintf(stdout, ">>> ");
for (i=0; i<argc; i++)
for (int i=0; i<argc; i++)
fprintf(stdout, "%s ", argv[i]);
fprintf(stdout, "\n");
#endif
/* run the command */
rc = do_cmd(pgm, p, argc, argv);