Commit 1f4cc373 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* fixed a signed vs unsinged warning

parent 8a3dd2f3
...@@ -973,7 +973,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable, ...@@ -973,7 +973,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
CGAcquireDisplayFadeReservation(kCGMaxDisplayReservationInterval, &token); CGAcquireDisplayFadeReservation(kCGMaxDisplayReservationInterval, &token);
CGDisplayFade( token, 0.5, kCGDisplayBlendNormal, kCGDisplayBlendSolidColor, 0, 0, 0, true ); CGDisplayFade( token, 0.5, kCGDisplayBlendNormal, kCGDisplayBlendSolidColor, 0, 0, 0, true );
CGReleaseDisplayFadeReservation( token ); CGReleaseDisplayFadeReservation( token );
int i; unsigned int i;
for( i = 0 ; i < [o_screens count]; i++) for( i = 0 ; i < [o_screens count]; i++)
{ {
struct struct
...@@ -986,7 +986,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable, ...@@ -986,7 +986,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
CGDisplayCount dspyCnt; CGDisplayCount dspyCnt;
CGPoint gPoint; CGPoint gPoint;
if( i == i_device ) continue; if( i == (unsigned int)i_device ) continue;
screen_rect = [[o_screens objectAtIndex: i] frame]; screen_rect = [[o_screens objectAtIndex: i] frame];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment