summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2010-04-14 10:46:25 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2010-05-03 15:02:03 +0200
commit3246e1327151448d279f3f6aa8330df70ce0b138 (patch)
treec0aff6d125bbee6c176237c725bcf75d7cd78c0a /include
parentea343ab9e8b5cf653baf55d8c8bab070580d2781 (diff)
downloadbarebox-3246e1327151448d279f3f6aa8330df70ce0b138.tar.gz
barebox-3246e1327151448d279f3f6aa8330df70ce0b138.tar.xz
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>
Diffstat (limited to 'include')
-rw-r--r--include/stdio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdio.h b/include/stdio.h
index cd1a913715..d591b6ab60 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -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);