summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authort3kk3n2024-04-17 09:12:00 -0400
committert3kk3n2024-04-17 09:12:00 -0400
commit4ddad0bc147de93624d973930427b76add4174fb (patch)
tree705ad4defcc8429540bdc913e90e16c70ac413fb
parent658439eab0da9be2ee130c4af2fe7997bfeab8c1 (diff)
downloadaur-4ddad0bc147de93624d973930427b76add4174fb.tar.gz
FatX: Update to 1.17
-rw-r--r--fatx.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/fatx.patch b/fatx.patch
deleted file mode 100644
index c2436095742c..000000000000
--- a/fatx.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- fatx-1.15/fatx.cpp 2018-02-15 12:27:26.000000000 -0500
-+++ fatx-1.15/fatx.cpp 2021-05-09 12:16:25.971134000 -0500
-@@ -61,7 +61,7 @@
- }
- if(container.size() + vv.size() > capacity) {
- typename container_type::right_iterator b = container.right.begin();
-- advance(b, container.size() + vv.size() - capacity);
-+ std::advance(b, container.size() + vv.size() - capacity);
- #if defined DEBUG && defined DBG_CACHE
- dbglog((format("Xx. fatbuf: reduce (%d)\n") % container.size()).str())
- #endif
-@@ -1969,8 +1969,8 @@
-
- dskmap:: dskmap(const fatxpar& par) :
- memnext(
-- bind(&dskmap::real_read, this, _1, _2),
-- bind(&dskmap::real_write, this, _1, _2),
-+ bind(&dskmap::real_read, this, boost::placeholders::_1, boost::placeholders::_2),
-+ bind(&dskmap::real_write, this, boost::placeholders::_1, boost::placeholders::_2),
- #define CACHESIZE (par.clus_fat * par.chain_size / max_cache_div > par.clus_size ? par.clus_fat * par.chain_size / max_cache_div : par.clus_size)
- CACHESIZE,
- (CACHESIZE / nb_cache_div > par.clus_size ? CACHESIZE / nb_cache_div : par.clus_size)
-