Minor tweaks based on maniacbug commits.

This commit is contained in:
David Kopf 2011-08-16 14:25:16 -04:00
parent 1c53807727
commit 93097dcc0a
2 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@ shell_default_output(const char *text1, int len1, const char *text2, int len2)
/* Workaround for absence of "%.*s" format in avr-libc */
#if defined (__AVR__)
printf("%s%s\r\n", text1, text2);
printf("%s %s\r\n", text1, text2);
#else
printf("%.*s%.*s\r\n", len1, text1, len2, text2);
#endif