Changeset ae7ddb624932be8956493c5b790f1b400e66146f

Show
Ignore:
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
  • src/playlist/loadsave.c

    r37dbdbd rae7ddb6  
    33 ***************************************************************************** 
    44 * 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 $ 
    66 * 
    77 * Authors: Samuel Hocevar <sam@zoy.org> 
     
    9999    if( !p_export->p_file ) 
    100100    { 
     101#ifdef HAVE_ERRNO_H 
    101102        msg_Err( p_playlist , "Could not create playlist file %s" 
    102 #ifdef HAVE_ERRNO_H 
    103103                 " (%s)", psz_filename, strerror(errno) ); 
    104104#else 
     105        msg_Err( p_playlist , "Could not create playlist file %s" 
    105106                 , psz_filename ); 
    106107#endif