Просмотр исходного кода

Increase BUFSIZ to 512 to avoid bug in busybox tar.

Manuel Novoa III 25 лет назад
Родитель
Сommit
0c827cb739
1 измененных файлов с 1 добавлено и 1 удалено
  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)