diff options
author | sr55 <[email protected]> | 2011-11-29 17:41:41 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-11-29 17:41:41 +0000 |
commit | 201e0ba58839e9647dedf84452dfc9caa9d64910 (patch) | |
tree | dd6ce182a163905ba8fb95190701a45fd0b40c0f /test | |
parent | d40d2fe37b2e9a61067f2f13fdabaf4ff4c2a69a (diff) |
CLI: "Rip" -> "Encode"
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4367 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r-- | test/test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test.c b/test/test.c index 56f172d20..f48f9db30 100644 --- a/test/test.c +++ b/test/test.c @@ -2559,13 +2559,13 @@ static int HandleEvents( hb_handle_t * h ) switch( p.error ) { case HB_ERROR_NONE: - fprintf( stderr, "\nRip done!\n" ); + fprintf( stderr, "\nEncode done!\n" ); break; case HB_ERROR_CANCELED: - fprintf( stderr, "\nRip canceled.\n" ); + fprintf( stderr, "\nEncode canceled.\n" ); break; default: - fprintf( stderr, "\nRip failed (error %x).\n", + fprintf( stderr, "\nEncode failed (error %x).\n", p.error ); } die = 1; |