summaryrefslogtreecommitdiffstats
path: root/test/ttbbt.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/ttbbt.c')
-rw-r--r--test/ttbbt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ttbbt.c b/test/ttbbt.c
index 6861afa..bef7db2 100644
--- a/test/ttbbt.c
+++ b/test/ttbbt.c
@@ -42,7 +42,7 @@
#define RandInt(a,b) ((rand()%(((b)-(a))+1))+(a))
-int tcompare (void * k1, void * k2, int cmparg);
+int tcompare (const void * k1, const void * k2, int cmparg);
static void swap_arr(int *arr, int a, int b)
{
@@ -57,11 +57,11 @@ static void swap_arr(int *arr, int a, int b)
} /* end swap_arr() */
int
-tcompare(void * k1, void * k2, int cmparg)
+tcompare(const void * k1, const void * k2, int cmparg)
{
/* shut compiler up */
cmparg=cmparg;
- return ((int) ((*(int *) k1) - (*(int *) k2)));
+ return ((int) ((*(const int *) k1) - (*(const int *) k2)));
}
void