summaryrefslogtreecommitdiffstats
path: root/test/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.c')
-rw-r--r--test/test.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/test/test.c b/test/test.c
index 73d55c2b0..903b330b6 100644
--- a/test/test.c
+++ b/test/test.c
@@ -436,17 +436,18 @@ static int HandleEvents( hb_handle_t * h )
}
job->file = strdup( output );
- if( crf )
- {
- job->crf = 1;
- }
+ if( crf )
+ {
+ job->crf = 1;
+ }
- if (x264opts != NULL && *x264opts != '\0' )
- {
- hb_log("Applying the following x264 options: %s", x264opts);
- job->x264opts = x264opts;
- }
- else /*avoids a bus error crash when options aren't specified*/
+ if (x264opts != NULL && *x264opts != '\0' )
+ {
+ fprintf( stderr, "Applying the following x264 options: %s\n",
+ x264opts);
+ job->x264opts = x264opts;
+ }
+ else /*avoids a bus error crash when options aren't specified*/
{
job->x264opts = NULL;
}