Changeset ae7ddb624932be8956493c5b790f1b400e66146f
- Timestamp:
- 24/01/04 00:06:25
(5 years ago)
- Author:
- Rocky Bernstein <rocky@videolan.org>
- git-committer:
- Rocky Bernstein <rocky@videolan.org> 1074899185 +0000
- git-parent:
[ebb65f2abc4fbda3369aafe7631b3f9634e8a128]
- git-author:
- Rocky Bernstein <rocky@videolan.org> 1074899185 +0000
- Message:
Compilation bug: can't have preprocessor directives inside a macro.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r37dbdbd |
rae7ddb6 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 1999-2004 VideoLAN |
|---|
| 5 | | * $Id: loadsave.c,v 1.7 2004/01/23 10:48:08 zorglub Exp $ |
|---|
| | 5 | * $Id: loadsave.c,v 1.8 2004/01/23 23:06:25 rocky Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Samuel Hocevar <sam@zoy.org> |
|---|
| … | … | |
| 99 | 99 | if( !p_export->p_file ) |
|---|
| 100 | 100 | { |
|---|
| | 101 | #ifdef HAVE_ERRNO_H |
|---|
| 101 | 102 | msg_Err( p_playlist , "Could not create playlist file %s" |
|---|
| 102 | | #ifdef HAVE_ERRNO_H |
|---|
| 103 | 103 | " (%s)", psz_filename, strerror(errno) ); |
|---|
| 104 | 104 | #else |
|---|
| | 105 | msg_Err( p_playlist , "Could not create playlist file %s" |
|---|
| 105 | 106 | , psz_filename ); |
|---|
| 106 | 107 | #endif |
|---|