9
0
Fork 0

Increase MAX_FILES to 128

I already hit the limit while doing DFU on a custom board. Increase the
value to a safe limit.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2010-04-14 10:46:25 +02:00
parent ea343ab9e8
commit 3246e13271
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ int vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
#define stdin 0
#define stdout 1
#define stderr 2
#define MAX_FILES 16
#define MAX_FILES 128
void fprintf(int file, const char *fmt, ...);
int fputs(int file, const char *s);