From 78d09f955a0462d3cf328e7f753031cea2ba21c7 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Fri, 25 Apr 2014 19:41:23 -0300 Subject: Compare with long, for 64-bit systems --- Object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Object.c') diff --git a/Object.c b/Object.c index 2399e50c..53b9976b 100644 --- a/Object.c +++ b/Object.c @@ -13,7 +13,7 @@ in the source distribution for its full text. typedef struct Object_ Object; typedef void(*Object_Display)(Object*, RichString*); -typedef int(*Object_Compare)(const void*, const void*); +typedef long(*Object_Compare)(const void*, const void*); typedef void(*Object_Delete)(Object*); #define Object_getClass(obj_) ((Object*)(obj_))->klass -- cgit v1.2.3