summaryrefslogtreecommitdiffstats
path: root/test/test.c
diff options
context:
space:
mode:
authoreddyg <[email protected]>2007-08-28 03:21:07 +0000
committereddyg <[email protected]>2007-08-28 03:21:07 +0000
commita1069ba28526ba3b0115b180742aac274244a4e6 (patch)
treebf3ac671870b616c6350fc169dfdac5efb302e02 /test/test.c
parent629a658bc0afc640ed599637832c201711b5f1bd (diff)
Don't use hb_log() outside of libhb, use fprintf() instead.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@881 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test/test.c')
-rw-r--r--test/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.c b/test/test.c
index 8694dc085..6793d22cc 100644
--- a/test/test.c
+++ b/test/test.c
@@ -85,7 +85,7 @@ static int HandleEvents( hb_handle_t * h );
****************************************************************************/
static void hb_cli_error_handler ( const char *errmsg )
{
- hb_log( "ERROR: %s", errmsg );
+ fprintf( stderr, "ERROR: %s", errmsg );
}
int main( int argc, char ** argv )