Changeset 6be4bda5b2ba0c1bad35328a195daf43d4c57cb4
- Timestamp:
- 10/02/07 09:53:47
(2 years ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1171097627 +0000
- git-parent:
[08cb8e62e928457d00602f9b96cb8c4755a74305]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1171097627 +0000
- Message:
Fix compiler warning
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r0336f13 |
r6be4bda |
|
| 132 | 132 | sout_mux_t *p_mux; |
|---|
| 133 | 133 | |
|---|
| 134 | | char *psz_mux_byext = NULL; |
|---|
| | 134 | const char *psz_mux_byext = NULL; |
|---|
| 135 | 135 | |
|---|
| 136 | 136 | config_ChainParse( p_stream, SOUT_CFG_PREFIX, ppsz_sout_options, |
|---|
| … | … | |
| 179 | 179 | { NULL, NULL } |
|---|
| 180 | 180 | }; |
|---|
| 181 | | char *psz_ext = strrchr( psz_url, '.' ) + 1; |
|---|
| | 181 | const char *psz_ext = strrchr( psz_url, '.' ) + 1; |
|---|
| 182 | 182 | int i; |
|---|
| 183 | 183 | |
|---|