Changeset f1a3e870f73b1238164894b9f47ede0069b02830
- Timestamp:
- 01/03/08 18:25:57
(9 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1204392357 +0000
- git-parent:
[0cb5cfbd2e62924c1e3175d7f296378eba4dbdca]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1204392357 +0000
- Message:
Fix a few warnings
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd06be22 |
rf1a3e87 |
|
| 137 | 137 | where XXXXXXXX is the fourcc */ |
|---|
| 138 | 138 | /* FIXME implement this */ |
|---|
| | 139 | (void)p_uuid; |
|---|
| | 140 | (void)i_fourcc; |
|---|
| 139 | 141 | } |
|---|
| 140 | 142 | |
|---|
| … | … | |
| 320 | 322 | { |
|---|
| 321 | 323 | /* Up to now do nothing */ |
|---|
| | 324 | (void)p_box; |
|---|
| 322 | 325 | } |
|---|
| 323 | 326 | |
|---|
| … | … | |
| 2800 | 2803 | } |
|---|
| 2801 | 2804 | |
|---|
| 2802 | | vasprintf( &psz_path, psz_fmt, args ); |
|---|
| | 2805 | if( vasprintf( &psz_path, psz_fmt, args ) == -1 ) |
|---|
| | 2806 | psz_path = NULL; |
|---|
| 2803 | 2807 | |
|---|
| 2804 | 2808 | if( !psz_path || !psz_path[0] ) |
|---|