Bugfix: removed extreanous asterix character
This commit is contained in:
parent
cdcb2c4744
commit
3b7666956f
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ shell_default_output(const char *text1, int len1, const char *text2, int len2)
|
||||||
#if defined (__AVR__)
|
#if defined (__AVR__)
|
||||||
printf("%s%s\r\n", text1, text2);
|
printf("%s%s\r\n", text1, text2);
|
||||||
#else
|
#else
|
||||||
*printf("%.*s%.*s\r\n", len1, text1, len2, text2);
|
printf("%.*s%.*s\r\n", len1, text1, len2, text2);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue