diff options
-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 ); } |