summaryrefslogtreecommitdiff
path: root/package/e2fsprogs/patches
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-06-04 15:52:11 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-06-04 17:54:52 +0200
commitbe42d3971c7e816d4ceec9fd3230982d2c1870ab (patch)
treef8aaca90f9782e22361c739136a9789baabe3c43 /package/e2fsprogs/patches
parentc6a70fc7146123491f82e9f0f05bf991878a709c (diff)
update to latest upstream
Diffstat (limited to 'package/e2fsprogs/patches')
-rw-r--r--package/e2fsprogs/patches/patch-lib_ext2fs_unix_io_c26
1 files changed, 0 insertions, 26 deletions
diff --git a/package/e2fsprogs/patches/patch-lib_ext2fs_unix_io_c b/package/e2fsprogs/patches/patch-lib_ext2fs_unix_io_c
deleted file mode 100644
index d0f348b81..000000000
--- a/package/e2fsprogs/patches/patch-lib_ext2fs_unix_io_c
+++ /dev/null
@@ -1,26 +0,0 @@
---- e2fsprogs-1.42.8.orig/lib/ext2fs/unix_io.c 2013-04-22 01:05:50.000000000 +0200
-+++ e2fsprogs-1.42.8/lib/ext2fs/unix_io.c 2013-08-14 13:31:40.000000000 +0200
-@@ -22,6 +22,9 @@
- #endif
-
- #include "config.h"
-+#if HAVE_STDINT_H
-+#include <stdint.h>
-+#endif
- #include <stdio.h>
- #include <string.h>
- #if HAVE_UNISTD_H
-@@ -931,10 +934,10 @@ static errcode_t unix_discard(io_channel
-
- if (channel->flags & CHANNEL_FLAGS_BLOCK_DEVICE) {
- #ifdef BLKDISCARD
-- __uint64_t range[2];
-+ uint64_t range[2];
-
-- range[0] = (__uint64_t)(block) * channel->block_size;
-- range[1] = (__uint64_t)(count) * channel->block_size;
-+ range[0] = (uint64_t)(block) * channel->block_size;
-+ range[1] = (uint64_t)(count) * channel->block_size;
-
- ret = ioctl(data->dev, BLKDISCARD, &range);
- #else