This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Tarantool -- an efficient key/value data store".
The branch master has been updated
via cf1c420cdff448ab6e50f77c7255264f27d05dd6 (commit)
from 3c2e3a59d85e25b495d0b95366e67a6f19ee00da (commit)
Summary of changes:
third_party/qsort_arg.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
commit cf1c420cdff448ab6e50f77c7255264f27d05dd6
Author: Yuriy Vostrikov <[email protected]>
Date: Mon Feb 21 18:19:26 2011 +0300
[core] Fix https://bugs.launchpad.net/bugs/722647
"qsort implementation fails to sort arrays greater 4GB"
diff --git a/third_party/qsort_arg.c b/third_party/qsort_arg.c
index e627af9..7a45b09 100644
--- a/third_party/qsort_arg.c
+++ b/third_party/qsort_arg.c
@@ -48,6 +48,7 @@
*/
#include <third_party/qsort_arg.h>
+#include <stdint.h>
#define min(a, b) (a) < (b) ? a : b
@@ -114,7 +115,7 @@ qsort_arg(void *a, size_t n, size_t es, int (*cmp)(const
void *a, const void *b,
*pl,
*pm,
*pn;
- int d,
+ intptr_t d,
r,
swaptype,
presorted;
--
Tarantool -- an efficient key/value data store
_______________________________________________
Mailing list: https://launchpad.net/~tarantool-developers
Post to : [email protected]
Unsubscribe : https://launchpad.net/~tarantool-developers
More help : https://help.launchpad.net/ListHelp