aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Slaven <bpk@hoopajoo.net>2005-03-21 21:35:42 (GMT)
committerSteve Slaven <bpk@hoopajoo.net>2005-03-21 21:35:42 (GMT)
commitec16b26b28ff6a2f028ca4039d2a84844e471a6d (patch)
tree87eaa525f97784d2c55ea08c09566eb8ded08c6e
parent59fb62c5db5d217e4a8bc294e9be67b0238f252b (diff)
downloadpowwow-ec16b26b28ff6a2f028ca4039d2a84844e471a6d.zip
powwow-ec16b26b28ff6a2f028ca4039d2a84844e471a6d.tar.gz
powwow-ec16b26b28ff6a2f028ca4039d2a84844e471a6d.tar.bz2
use tty_printf since printf will not work with locales
-rw-r--r--plugtest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugtest.c b/plugtest.c
index 596eab1..1d12c7d 100644
--- a/plugtest.c
+++ b/plugtest.c
@@ -8,11 +8,11 @@ void plugtest( char *arg );
cmdstruct mycommand = { NULL, "plugtest", "test command", plugtest, NULL };
void powwow_init() {
- printf( "Init plugtest.so!\n" );
+ tty_printf( "Init plugtest.so!\n" );
cmd_add_command( &mycommand );
}
void plugtest( char *arg ) {
- printf( "Arg was '%s'\n", arg );
+ tty_printf( "Arg was '%s'\n", arg );
}