summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2008-10-27 23:08:52 +0000
committerjbrjake <[email protected]>2008-10-27 23:08:52 +0000
commitd7a4e0dd8d58b514ddeeb41a8a96c19ae26f8e31 (patch)
tree28ae3ad49bb91866784d68071a15899d31b2f8f6 /test
parent46c254d32a2ca52c1067495aae60ffe92657f2de (diff)
CLI: Don't barf on OS X when someone gives a proper BSD path to begin with. (Thanks KonaBlend!)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1873 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r--test/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.c b/test/test.c
index 0c484163c..d08313c52 100644
--- a/test/test.c
+++ b/test/test.c
@@ -1845,7 +1845,7 @@ static int ParseOptions( int argc, char ** argv )
char *devName = bsd_name_for_path( input );
if( devName == NULL )
{
- return 0;
+ break;
}
if( device_is_dvd( devName ) )
{