Changeset f05d28d61b7a1dae079cbb47c6b3cc66d95b587b
- Timestamp:
- 05/10/08 20:01:11
(2 months ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1210442471 +0200
- git-parent:
[b3cb03feaa065b38f2b05219dc38fb78bd3d68cf]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1210442444 +0200
- Message:
Fix compiler warnings.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r27d483e |
rf05d28d |
|
| 308 | 308 | uint8_t *tmp_buffer; |
|---|
| 309 | 309 | ssize_t i_ret; |
|---|
| 310 | | int i_len_tmp; |
|---|
| | 310 | size_t i_len_tmp; |
|---|
| 311 | 311 | |
|---|
| 312 | 312 | i_len_tmp = 0; |
|---|
| … | … | |
| 369 | 369 | } |
|---|
| 370 | 370 | } |
|---|
| 371 | | if( i_len_tmp > 0 ) { |
|---|
| | 371 | if( i_len_tmp > 0 ) |
|---|
| | 372 | { |
|---|
| 372 | 373 | if( p_sys->p_thread->result_publish ) |
|---|
| 373 | 374 | { |
|---|
| … | … | |
| 425 | 426 | static int Seek( access_t *p_access, int64_t i_pos ) |
|---|
| 426 | 427 | { |
|---|
| | 428 | VLC_UNUSED( p_access ); |
|---|
| | 429 | VLC_UNUSED( i_pos ); |
|---|
| 427 | 430 | /*msg_Warn ( p_access, "Seek to %lld", i_pos); |
|---|
| 428 | 431 | switch( rtmp_seek( p_access, i_pos ) ) |
|---|