Changeset 3c80258576da980b4ac67012b2ebc48f73994910

Show
Ignore:
Timestamp:
09/13/07 22:29:32 (1 year ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1189715372 +0000
git-parent:

[84ab2958b9923ae3db456c02b62cabf44c7ca8a3]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1189715372 +0000
Message:

Explicit casts to proper integer types when formatting

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/demux/vobsub.c

    r6ee1e19 r3c80258  
    627627 
    628628                current_tk->i_delay = current_tk->i_delay + (i_gap * i_sign); 
    629                 msg_Dbg( p_demux, "sign: %+d gap: %+lld global delay: %+lld", i_sign, i_gap, current_tk->i_delay  ); 
     629                msg_Dbg( p_demux, "sign: %+d gap: %+lld global delay: %+lld", 
     630                         i_sign, (long long)i_gap, 
     631                         (long long)current_tk->i_delay  ); 
    630632            } 
    631633        } 
  • modules/misc/audioscrobbler.c

    re0dd770 r3c80258  
    130130#define    POST_REQUEST "POST /%s HTTP/1.1\n"                               \ 
    131131                        "Accept-Encoding: identity\n"                       \ 
    132                         "Content-length: %d\n"                              \ 
     132                        "Content-length: %u\n"                              \ 
    133133                        "Connection: close\n"                               \ 
    134134                        "Content-type: application/x-www-form-urlencoded\n" \ 
     
    422422                VLC_OBJECT(p_this), i_post_socket, NULL, 
    423423                POST_REQUEST, p_sys->psz_submit_file, 
    424                 strlen( psz_submit ), p_sys->psz_submit_file, 
     424                (unsigned)strlen( psz_submit ), p_sys->psz_submit_file, 
    425425                VERSION, psz_submit 
    426426            );