(vfs_s_retrieve_file): use symbolic name for array size.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2022-11-27 19:42:40 +03:00
parent 2a80ea54dd
commit 6a83438163
1 changed files with 1 additions and 1 deletions

View File

@ -1431,7 +1431,7 @@ vfs_s_retrieve_file (struct vfs_class *me, struct vfs_s_inode *ino)
{
/* If you want reget, you'll have to open file with O_LINEAR */
off_t total = 0;
char buffer[8192];
char buffer[BUF_8K];
int handle;
ssize_t n;
off_t stat_size = ino->st.st_size;