diff options
author | eddyg <[email protected]> | 2009-06-21 22:24:24 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2009-06-21 22:24:24 +0000 |
commit | 284f93d866343c49b53b6ff0f641e57c77ecb759 (patch) | |
tree | 59bcfad6f79385f1e4371a99985adb7dac9715c2 /test | |
parent | 63d590ca6b884e309bc6af1379af7882281d25e4 (diff) |
CLI: Add type (int) to is_whole_media_service() to remove compile warning.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2595 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r-- | test/test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test.c b/test/test.c index 3d665a7af..1c2b36cc2 100644 --- a/test/test.c +++ b/test/test.c @@ -137,7 +137,7 @@ static char* bsd_name_for_path(char *path); static int device_is_dvd(char *device); static io_service_t get_iokit_service( char *device ); static int is_dvd_service( io_service_t service ); -static is_whole_media_service( io_service_t service ); +static int is_whole_media_service( io_service_t service ); #endif /* Only print the "Muxing..." message once */ @@ -3206,7 +3206,7 @@ static int is_dvd_service( io_service_t service ) * The whole media object is indicated in the IORegistry by the presence of a * property with the key "Whole" and value "Yes". ****************************************************************************/ -static is_whole_media_service( io_service_t service ) +static int is_whole_media_service( io_service_t service ) { int result = 0; |