Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-06-24 22:22:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-06-24 22:22:14 +0400
commitd411e1548cfda7a48e4df81eda1e998ae172ed43 (patch)
tree91009c3f521ac29e82e67a0335e2f2b7b2f0e30f /source/blender/blenlib/BLI_sort.h
parentdf1c400420b39506e38745bb0db3d4f9797de424 (diff)
Correction to last commit
Diffstat (limited to 'source/blender/blenlib/BLI_sort.h')
-rw-r--r--source/blender/blenlib/BLI_sort.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_sort.h b/source/blender/blenlib/BLI_sort.h
index 0108ae19872..516f917a351 100644
--- a/source/blender/blenlib/BLI_sort.h
+++ b/source/blender/blenlib/BLI_sort.h
@@ -42,7 +42,7 @@
/* Quick sort reentrant */
typedef int (*BLI_sort_cmp_t)(const void *a, const void *b, void *ctx);
-void BLI_qsort_r(void *a, size_t n, size_t es, void *thunk, BLI_sort_cmp_t cmp)
+void BLI_qsort_r(void *a, size_t n, size_t es, BLI_sort_cmp_t cmp, void *thunk)
#ifdef __GNUC__
__attribute__((nonnull(1, 5)))
#endif