Changeset 39cc374994d273940fb05d881594cb19a7df769f
- Timestamp:
- 01/02/06 18:44:04
(3 years ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1138815844 +0000
- git-parent:
[4733a541022bb566dec486de6939c80339d20f12]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1138815844 +0000
- Message:
Fix warnings
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r2cb472d |
r39cc374 |
|
| 275 | 275 | if ( i_size > 0 ) |
|---|
| 276 | 276 | { |
|---|
| 277 | | while ( i_size && strncasecmp( p_peek, "NSC Format Version=", |
|---|
| | 277 | while ( i_size && strncasecmp( (char *)p_peek, "NSC Format Version=", |
|---|
| 278 | 278 | (int) sizeof("NSC Format Version=") - 1 ) ) |
|---|
| 279 | 279 | { |
|---|
| … | … | |
| 281 | 281 | i_size--; |
|---|
| 282 | 282 | } |
|---|
| 283 | | if ( !strncasecmp( p_peek, "NSC Format Version=", |
|---|
| | 283 | if ( !strncasecmp( (char *)p_peek, "NSC Format Version=", |
|---|
| 284 | 284 | (int) sizeof("NSC Format Version=") -1 ) ) |
|---|
| 285 | 285 | { |
|---|