diff options
author | eddyg <[email protected]> | 2007-08-28 03:21:07 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2007-08-28 03:21:07 +0000 |
commit | a1069ba28526ba3b0115b180742aac274244a4e6 (patch) | |
tree | bf3ac671870b616c6350fc169dfdac5efb302e02 /test/test.c | |
parent | 629a658bc0afc640ed599637832c201711b5f1bd (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.c | 2 |
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 ) |