summaryrefslogtreecommitdiffstats
path: root/Object.c
diff options
context:
space:
mode:
Diffstat (limited to 'Object.c')
-rw-r--r--Object.c2
1 files changed, 1 insertions, 1 deletions
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