Changeset 0a84a0358d63a2de3c07b011f77455eef877c371
- Timestamp:
- 09/05/07 08:51:34
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1188975094 +0000
- git-parent:
[361d658a2bb4b7e0cbb000d58ee5b21968e696f4]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1188975094 +0000
- Message:
size_t / int confusion
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rcc3bd15 |
r0a84a03 |
|
| 678 | 678 | ( strncmp( ppsz_button_states[2], &state[0], strlen(ppsz_button_states[2]) ) != 0 ) ) |
|---|
| 679 | 679 | { |
|---|
| 680 | | msg_Err( p_this, "invalid button state %s for button %s expected %d: unselect, select or pressed)", |
|---|
| 681 | | &state[0], &action[0], strlen(&state[0])); |
|---|
| | 680 | msg_Err( p_this, "invalid button state %s for button %s " |
|---|
| | 681 | "expected %u: unselect, select or pressed)", |
|---|
| | 682 | &state[0], &action[0], (unsigned)strlen(&state[0])); |
|---|
| 682 | 683 | goto error; |
|---|
| 683 | 684 | } |
|---|
| r6d479b5 |
r0a84a03 |
|
| 631 | 631 | return NULL; |
|---|
| 632 | 632 | |
|---|
| 633 | | msg_Dbg( p_sap, "Generated SDP (%i bytes):\n%s", strlen(psz_sdp), |
|---|
| 634 | | psz_sdp ); |
|---|
| | 633 | msg_Dbg( p_sap, "Generated SDP (%u bytes):\n%s", |
|---|
| | 634 | (unsigned)strlen(psz_sdp), psz_sdp ); |
|---|
| 635 | 635 | return psz_sdp; |
|---|
| 636 | 636 | } |
|---|