mirror of
https://git.openwrt.org/project/make_ext4fs.git
synced 2025-06-27 23:33:03 +00:00
Remove references to O_BINARY
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
This commit is contained in:
@ -24,6 +24,7 @@
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <sys/mman.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
@ -34,13 +35,6 @@
|
||||
#include "sparse_crc32.h"
|
||||
#include "sparse_format.h"
|
||||
|
||||
#ifndef USE_MINGW
|
||||
#include <sys/mman.h>
|
||||
#define O_BINARY 0
|
||||
#else
|
||||
#define ftruncate64 ftruncate
|
||||
#endif
|
||||
|
||||
#if defined(__APPLE__) && defined(__MACH__)
|
||||
#define lseek64 lseek
|
||||
#define ftruncate64 ftruncate
|
||||
@ -748,7 +742,7 @@ int write_file_chunk(struct output_file *out, unsigned int len,
|
||||
{
|
||||
int ret;
|
||||
|
||||
int file_fd = open(file, O_RDONLY | O_BINARY);
|
||||
int file_fd = open(file, O_RDONLY);
|
||||
if (file_fd < 0) {
|
||||
return -errno;
|
||||
}
|
||||
|
Reference in New Issue
Block a user