Files
Matthieu CRAPET 92e26f5f69 xdelta3: add new recipe for version 3.0.8
Useful command line tool for handling binary diff.

Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-11 14:58:49 +01:00

30 lines
743 B
Diff

Upstream-Status: Pending
http://code.google.com/p/xdelta/issues/detail?id=174
Compilation fix:
<code>
| testing/regtest.cc:763:3: error: no matching function for call to 'max(xoff_t, size_t&)'
</code>
Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com>
---
testing/regtest.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testing/regtest.cc b/testing/regtest.cc
index 12b712e..b63a1f9 100644
--- a/testing/regtest.cc
+++ b/testing/regtest.cc
@@ -12,7 +12,7 @@ public:
Options() : encode_srcwin_maxsz(1<<20),
block_size(Constants::BLOCK_SIZE),
size_known(false) { }
- size_t encode_srcwin_maxsz;
+ xoff_t encode_srcwin_maxsz;
size_t block_size;
bool size_known;
};
--
1.8.5.4