summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2009-07-25 16:05:52 +0000
committerjstebbins <[email protected]>2009-07-25 16:05:52 +0000
commit48ac15cda772f74c010395bd11eb3a35283e63fd (patch)
tree3d026f31afed6560872aea8e67b91053dd70a459 /test
parente2ae056e1cada32960e71ae51a7330d41e30ace9 (diff)
CLI: fix audio lang code logging error
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2733 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r--test/test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test.c b/test/test.c
index 134e0179b..2fa82f706 100644
--- a/test/test.c
+++ b/test/test.c
@@ -421,8 +421,8 @@ static void PrintTitleInfo( hb_title_t * title )
{
fprintf( stderr, " + %d, %s (iso639-2: %s)\n",
i + 1,
- audio->lang.iso639_2,
- audio->lang.description );
+ audio->lang.description,
+ audio->lang.iso639_2 );
}
}
fprintf( stderr, " + subtitle tracks:\n" );