Changeset 5b4900edd0909de1919f9b45881385e1c27d9133
- Timestamp:
- 06/12/03 23:50:08
(5 years ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1070751008 +0000
- git-parent:
[25cada61acd8ab9c0b337ec903381cc81c51f523]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1070751008 +0000
- Message:
Fixed compiler waring about signed - unsigned comparision. It is always safer to use the same datatype when comparing values.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rfb88af7 |
r5b4900e |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001-2003 VideoLAN |
|---|
| 5 | | * $Id: http.c,v 1.7 2003/08/25 01:33:25 fenrir Exp $ |
|---|
| | 5 | * $Id: http.c,v 1.8 2003/12/06 22:50:08 jpsaman Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Laurent Aimar <fenrir@via.ecp.fr> |
|---|
| … | … | |
| 299 | 299 | p_sys->b_header_complete = VLC_FALSE; |
|---|
| 300 | 300 | } |
|---|
| 301 | | if( p_buffer->i_size + p_sys->i_header_size > p_sys->i_header_allocated ) |
|---|
| | 301 | if( (int)(p_buffer->i_size + p_sys->i_header_size) > p_sys->i_header_allocated ) |
|---|
| 302 | 302 | { |
|---|
| 303 | 303 | p_sys->i_header_allocated = p_buffer->i_size + p_sys->i_header_size + 1024; |
|---|
| rf228aee |
r5b4900e |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001-2003 VideoLAN |
|---|
| 5 | | * $Id: vorbis.c,v 1.25 2003/11/23 15:50:07 gbazin Exp $ |
|---|
| | 5 | * $Id: vorbis.c,v 1.26 2003/12/06 22:50:08 jpsaman Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Gildas Bazin <gbazin@netcourrier.com> |
|---|
| … | … | |
| 643 | 643 | block_t *p_block, *p_chain = NULL; |
|---|
| 644 | 644 | float **buffer; |
|---|
| 645 | | int i, j; |
|---|
| | 645 | int i; |
|---|
| | 646 | unsigned int j; |
|---|
| 646 | 647 | |
|---|
| 647 | 648 | p_sys->i_pts = p_aout_buf->start_date - |
|---|