From ec16b26b28ff6a2f028ca4039d2a84844e471a6d Mon Sep 17 00:00:00 2001 From: Steve Slaven Date: Mon, 21 Mar 2005 21:35:42 +0000 Subject: use tty_printf since printf will not work with locales 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 ); } -- cgit v0.10.2