summaryrefslogtreecommitdiffstats
path: root/Object.c
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2008-03-09 08:58:38 +0000
committerHisham Muhammad <hisham@gobolinux.org>2008-03-09 08:58:38 +0000
commitda23c8c5a188324455c8f417293c10d85f65cb63 (patch)
treed7a4b8cb0af705de6650e20e00ba3da04d84b27f /Object.c
parent12f4f09e6ed288bdedc86e4ef22f3cc34f0e787a (diff)
Clean up headers by using 'static' whenever possible.
Reduces resulting code size.
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 15b9a6ec..ac27de03 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);

© 2014-2024 Faster IT GmbH | imprint | privacy policy