]> git.sesse.net Git - vlc/commitdiff
size_t / int confusion
authorRémi Denis-Courmont <rem@videolan.org>
Wed, 5 Sep 2007 06:51:34 +0000 (06:51 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Wed, 5 Sep 2007 06:51:34 +0000 (06:51 +0000)
src/osd/osd_parser.c
src/stream_output/sap.c

index 212d093da7bdc592552d48f09ffb722523b80f37..c2b5a002ea7ae81f805d7aa2f769a951cb5e823b 100644 (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[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)",
-                                    &state[0], &action[0], strlen(&state[0]));
+                msg_Err( p_this, "invalid button state %s for button %s "
+                         "expected %u: unselect, select or pressed)",
+                         &state[0], &action[0], (unsigned)strlen(&state[0]));
                 goto error;
             }
 
index 9dee242f40f93cca092f137259f842a04e54726b..196a376509f9a216aeedc2626d05433bd4a26cb2 100644 (file)
@@ -630,8 +630,8 @@ static char *SDPGenerate( sap_handler_t *p_sap,
     if (res == -1)
         return NULL;
 
-    msg_Dbg( p_sap, "Generated SDP (%i bytes):\n%s", strlen(psz_sdp),
-             psz_sdp );
+    msg_Dbg( p_sap, "Generated SDP (%u bytes):\n%s",
+             (unsigned)strlen(psz_sdp), psz_sdp );
     return psz_sdp;
 }