]> Nishi Git Mirror - gwion.git/commitdiff
:art: clean
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Mon, 14 Sep 2020 11:21:35 +0000 (13:21 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Mon, 14 Sep 2020 11:21:35 +0000 (13:21 +0200)
tests/import/variadic.c

index 4b8b7cd6fd9a3ed21e48d7933029d7ce90371650..4d398a6520a5a08897f60e6d715289a80506b119 100644 (file)
@@ -11,7 +11,7 @@
 #include "gwi.h"
 
 static MFUN(m_test) {
-  printf("%p\n", *(M_Object*)MEM(0));
+  gw_out("%p\n", *(M_Object*)MEM(0));
 }
 
 static MFUN(m_variadic) {
@@ -24,13 +24,13 @@ static MFUN(m_variadic) {
   m_uint i = 0;
   while(i < arg->s) {
     if(*str == 'i') {
-      printf("%" INT_F "\n", *(m_int*)(arg->d + arg->o));
+      gw_out("%"INT_F "\n", *(m_int*)(arg->d + arg->o));
       arg->o += SZ_INT;
     } else if(*str == 'f') {
-      printf("%f\n", *(m_float*)(arg->d + arg->o));
+      gw_out("%f\n", *(m_float*)(arg->d + arg->o));
       arg->o += SZ_FLOAT;
     } else if(*str == 'o') {
-      printf("%p\n", (void*)*(M_Object*)(arg->d + arg->o));
+      gw_out("%p\n", (void*)*(M_Object*)(arg->d + arg->o));
       arg->o += SZ_INT;
     }
     ++i;