diff options
author | Steve Slaven <bpk@hoopajoo.net> | 2005-03-21 21:35:42 (GMT) |
---|---|---|
committer | Steve Slaven <bpk@hoopajoo.net> | 2005-03-21 21:35:42 (GMT) |
commit | ec16b26b28ff6a2f028ca4039d2a84844e471a6d (patch) | |
tree | 87eaa525f97784d2c55ea08c09566eb8ded08c6e | |
parent | 59fb62c5db5d217e4a8bc294e9be67b0238f252b (diff) | |
download | powwow-ec16b26b28ff6a2f028ca4039d2a84844e471a6d.zip powwow-ec16b26b28ff6a2f028ca4039d2a84844e471a6d.tar.gz powwow-ec16b26b28ff6a2f028ca4039d2a84844e471a6d.tar.bz2 |
use tty_printf since printf will not work with locales
-rw-r--r-- | plugtest.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 ); } |