From 2b214ce885a39e20f2853cfcdf6e8bf0c4a813e1 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 29 May 2016 08:39:36 +0200 Subject: dosfstools: update to 4.0 --- package/dosfstools/patches/patch-src_io_h | 35 ------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 package/dosfstools/patches/patch-src_io_h (limited to 'package/dosfstools/patches/patch-src_io_h') diff --git a/package/dosfstools/patches/patch-src_io_h b/package/dosfstools/patches/patch-src_io_h deleted file mode 100644 index 3ec0fd809..000000000 --- a/package/dosfstools/patches/patch-src_io_h +++ /dev/null @@ -1,35 +0,0 @@ ---- dosfstools-3.0.26.orig/src/io.h 2014-02-08 18:53:10.000000000 +0100 -+++ dosfstools-3.0.26/src/io.h 2014-03-26 13:27:15.000000000 +0100 -@@ -27,9 +27,9 @@ - #ifndef _IO_H - #define _IO_H - --#include /* for loff_t */ -+#include /* for off_t */ - --loff_t llseek(int fd, loff_t offset, int whence); -+off_t llseek(int fd, off_t offset, int whence); - - /* lseek() analogue for large offsets. */ - -@@ -38,17 +38,17 @@ void fs_open(char *path, int rw); - /* Opens the filesystem PATH. If RW is zero, the filesystem is opened - read-only, otherwise, it is opened read-write. */ - --void fs_read(loff_t pos, int size, void *data); -+void fs_read(off_t pos, int size, void *data); - - /* Reads SIZE bytes starting at POS into DATA. Performs all applicable - changes. */ - --int fs_test(loff_t pos, int size); -+int fs_test(off_t pos, int size); - - /* Returns a non-zero integer if SIZE bytes starting at POS can be read without - errors. Otherwise, it returns zero. */ - --void fs_write(loff_t pos, int size, void *data); -+void fs_write(off_t pos, int size, void *data); - - /* If write_immed is non-zero, SIZE bytes are written from DATA to the disk, - starting at POS. If write_immed is zero, the change is added to a list in -- cgit v1.2.3