Commit 77e453ac authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Minor clean up

parent cd15d404
...@@ -478,7 +478,7 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */ ...@@ -478,7 +478,7 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */
/**@{*/ \ /**@{*/ \
int i_object_id; \ int i_object_id; \
int i_object_type; \ int i_object_type; \
char *psz_object_type; \ const char *psz_object_type; \
char *psz_object_name; \ char *psz_object_name; \
\ \
/* Messages header */ \ /* Messages header */ \
......
...@@ -99,7 +99,7 @@ static vlc_mutex_t structure_lock; ...@@ -99,7 +99,7 @@ static vlc_mutex_t structure_lock;
void * __vlc_object_create( vlc_object_t *p_this, int i_type ) void * __vlc_object_create( vlc_object_t *p_this, int i_type )
{ {
vlc_object_t * p_new; vlc_object_t * p_new;
char * psz_type; const char * psz_type;
size_t i_size; size_t i_size;
switch( i_type ) switch( i_type )
...@@ -217,10 +217,8 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type ) ...@@ -217,10 +217,8 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
psz_type = "statistics"; psz_type = "statistics";
break; break;
default: default:
i_size = i_type > 0 i_size = i_type > (int)sizeof(vlc_object_t)
? i_type > (int)sizeof(vlc_object_t) ? i_type : (int)sizeof(vlc_object_t);
? i_type : (int)sizeof(vlc_object_t)
: (int)sizeof(vlc_object_t);
i_type = VLC_OBJECT_GENERIC; i_type = VLC_OBJECT_GENERIC;
psz_type = "generic"; psz_type = "generic";
break; break;
......
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