aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/alg.goc
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/runtime/alg.goc')
-rw-r--r--src/pkg/runtime/alg.goc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pkg/runtime/alg.goc b/src/pkg/runtime/alg.goc
index 41be9c0e66..cb8e073151 100644
--- a/src/pkg/runtime/alg.goc
+++ b/src/pkg/runtime/alg.goc
@@ -66,7 +66,7 @@ runtime·memprint(uintptr s, void *a)
v = *(uint64*)a;
break;
}
- runtime·printint(v);
+ runtime·printint_c(v);
}
void
@@ -332,7 +332,7 @@ void
runtime·strprint(uintptr s, void *a)
{
USED(s);
- runtime·printstring(*(String*)a);
+ runtime·printstring_c(*(String*)a);
}
void
@@ -359,7 +359,7 @@ void
runtime·interprint(uintptr s, void *a)
{
USED(s);
- runtime·printiface(*(Iface*)a);
+ runtime·printiface_c(*(Iface*)a);
}
void
@@ -393,7 +393,7 @@ void
runtime·nilinterprint(uintptr s, void *a)
{
USED(s);
- runtime·printeface(*(Eface*)a);
+ runtime·printeface_c(*(Eface*)a);
}
void