make buf nonstatic - not available when running from flash

This commit is contained in:
Markus Fröschle
2012-12-12 05:29:45 +00:00
parent 1359eb10c3
commit 126fbd6305
2 changed files with 2 additions and 1 deletions

View File

@@ -100,7 +100,7 @@ size_t strlen(const char *s)
static void doprnt(void (*addchar)(int), const char *sfmt, va_list ap)
{
static char buf[128];
char buf[128];
char *bp;
const char *f;
long l;