Changeset 3c80258576da980b4ac67012b2ebc48f73994910
- 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
| r6ee1e19 |
r3c80258 |
|
| 627 | 627 | |
|---|
| 628 | 628 | 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 ); |
|---|
| 630 | 632 | } |
|---|
| 631 | 633 | } |
|---|
| re0dd770 |
r3c80258 |
|
| 130 | 130 | #define POST_REQUEST "POST /%s HTTP/1.1\n" \ |
|---|
| 131 | 131 | "Accept-Encoding: identity\n" \ |
|---|
| 132 | | "Content-length: %d\n" \ |
|---|
| | 132 | "Content-length: %u\n" \ |
|---|
| 133 | 133 | "Connection: close\n" \ |
|---|
| 134 | 134 | "Content-type: application/x-www-form-urlencoded\n" \ |
|---|
| … | … | |
| 422 | 422 | VLC_OBJECT(p_this), i_post_socket, NULL, |
|---|
| 423 | 423 | 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, |
|---|
| 425 | 425 | VERSION, psz_submit |
|---|
| 426 | 426 | ); |
|---|