Browse Source

Increase BUFSIZ to 512 to avoid bug in busybox tar.

Manuel Novoa III 24 years ago
parent
commit
0c827cb739
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/stdio.h

+ 1 - 1
include/stdio.h

@@ -51,7 +51,7 @@ struct __stdio_file {
 typedef struct __stdio_file FILE;
 
 /* Default buffer size.  */
-#define BUFSIZ	    (500) /* should get us a fully used kmalloc bucket */
+#define BUFSIZ	    (512)
 
 /* Define EOF and NULL */
 #define EOF	(-1)