Commit 0a84a035 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

size_t / int confusion

parent 361d658a
...@@ -677,8 +677,9 @@ int osd_ConfigLoader( vlc_object_t *p_this, const char *psz_file, ...@@ -677,8 +677,9 @@ int osd_ConfigLoader( vlc_object_t *p_this, const char *psz_file,
( strncmp( ppsz_button_states[1], &state[0], strlen(ppsz_button_states[1]) ) != 0 ) && ( strncmp( ppsz_button_states[1], &state[0], strlen(ppsz_button_states[1]) ) != 0 ) &&
( strncmp( ppsz_button_states[2], &state[0], strlen(ppsz_button_states[2]) ) != 0 ) ) ( strncmp( ppsz_button_states[2], &state[0], strlen(ppsz_button_states[2]) ) != 0 ) )
{ {
msg_Err( p_this, "invalid button state %s for button %s expected %d: unselect, select or pressed)", msg_Err( p_this, "invalid button state %s for button %s "
&state[0], &action[0], strlen(&state[0])); "expected %u: unselect, select or pressed)",
&state[0], &action[0], (unsigned)strlen(&state[0]));
goto error; goto error;
} }
......
...@@ -630,8 +630,8 @@ static char *SDPGenerate( sap_handler_t *p_sap, ...@@ -630,8 +630,8 @@ static char *SDPGenerate( sap_handler_t *p_sap,
if (res == -1) if (res == -1)
return NULL; return NULL;
msg_Dbg( p_sap, "Generated SDP (%i bytes):\n%s", strlen(psz_sdp), msg_Dbg( p_sap, "Generated SDP (%u bytes):\n%s",
psz_sdp ); (unsigned)strlen(psz_sdp), psz_sdp );
return psz_sdp; return psz_sdp;
} }
......
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