From 3b47915baa8858222847262b5d9d10408df6ba34 Mon Sep 17 00:00:00 2001 From: Hannes Janetzek Date: Wed, 30 Jan 2013 04:16:12 +0100 Subject: [PATCH] use void pointers --- jni/triangle.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jni/triangle.c b/jni/triangle.c index 50c0eff5..006b9417 100644 --- a/jni/triangle.c +++ b/jni/triangle.c @@ -312,7 +312,8 @@ /* compiler is smarter, feel free to replace the "int" with "void". */ /* Not that it matters. */ -#define VOID int +//#define VOID int +#define VOID void /* Two constants for algorithms based on random sampling. Both constants */ /* have been chosen empirically to optimize their respective algorithms. */