Changeset d5a9c50c28669e9a0ff725438ff142bdedd7e6e8
- Timestamp:
- 13/11/06 16:37:26
(2 years ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1163432246 +0000
- git-parent:
[a08afde81bad0c5b4982af375d6d93f0ced85c87]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1163432246 +0000
- Message:
Fix warnings
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rabb377b |
rd5a9c50 |
|
| 63 | 63 | # ifdef DEBUG |
|---|
| 64 | 64 | /* Activate malloc checking routines to detect heap corruptions. */ |
|---|
| 65 | | putenv( "MALLOC_CHECK_=2" ); |
|---|
| | 65 | putenv( (char*)"MALLOC_CHECK_=2" ); |
|---|
| 66 | 66 | |
|---|
| 67 | 67 | /* Disable the ugly Gnome crash dialog so that we properly segfault */ |
|---|
| 68 | | putenv( "GNOME_DISABLE_CRASH_DIALOG=1" ); |
|---|
| | 68 | putenv( (char *)"GNOME_DISABLE_CRASH_DIALOG=1" ); |
|---|
| 69 | 69 | # endif |
|---|
| 70 | 70 | |
|---|
| … | … | |
| 72 | 72 | if( getenv( "VLC_VERBOSE" ) == NULL ) |
|---|
| 73 | 73 | { |
|---|
| 74 | | putenv( "VLC_VERBOSE=0" ); |
|---|
| | 74 | putenv( (char *)"VLC_VERBOSE=0" ); |
|---|
| 75 | 75 | } |
|---|
| 76 | 76 | #endif |
|---|