Commit 42bf6ff2 authored by Jean-Paul Saman's avatar Jean-Paul Saman

vougl.m: cosmetics

parent 5886a523
/***************************************************************************** /*****************************************************************************
* voutgl.m: MacOS X OpenGL provider * voutgl.m: MacOS X OpenGL provider
***************************************************************************** *****************************************************************************
* Copyright (C) 2001-2004, 2007 the VideoLAN team * Copyright (C) 2001-2004, 2007-2009 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Colin Delacroix <colin@zoy.org> * Authors: Colin Delacroix <colin@zoy.org>
...@@ -110,7 +110,7 @@ int OpenVideoGL ( vlc_object_t * p_this ) ...@@ -110,7 +110,7 @@ int OpenVideoGL ( vlc_object_t * p_this )
p_vout->p_sys = malloc( sizeof( vout_sys_t ) ); p_vout->p_sys = malloc( sizeof( vout_sys_t ) );
if( p_vout->p_sys == NULL ) if( p_vout->p_sys == NULL )
return( 1 ); return VLC_ENOMEM;
memset( p_vout->p_sys, 0, sizeof( vout_sys_t ) ); memset( p_vout->p_sys, 0, sizeof( vout_sys_t ) );
...@@ -174,7 +174,6 @@ int OpenVideoGL ( vlc_object_t * p_this ) ...@@ -174,7 +174,6 @@ int OpenVideoGL ( vlc_object_t * p_this )
[o_pool release]; [o_pool release];
/* Check to see if initVout: was successfull */ /* Check to see if initVout: was successfull */
if( !p_vout->p_sys->o_vout_view ) if( !p_vout->p_sys->o_vout_view )
{ {
return VLC_EGENERIC; return VLC_EGENERIC;
......
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