aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 );
}