From c74c38760df69bb87e93dff18cf91464e5d02f37 Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Mon, 11 Apr 2016 13:00:22 +0200 Subject: Imported Upstream version 0.8.1 --- Object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Object.c') diff --git a/Object.c b/Object.c index 15b9a6e..ac27de0 100644 --- a/Object.c +++ b/Object.c @@ -48,7 +48,7 @@ void Object_setClass(void* this, char* class) { ((Object*)this)->class = class; } -void Object_display(Object* this, RichString* out) { +static void Object_display(Object* this, RichString* out) { char objAddress[50]; sprintf(objAddress, "%s @ %p", this->class, (void*) this); RichString_write(out, CRT_colors[DEFAULT_COLOR], objAddress); -- cgit v1.2.3