shithub: libdvdcss

Download patch

ref: 0329c59f62eec519e8cfacf20d11398f67819e60
parent: 7e6e6cf923890b0378725ca1cc0361708f33745d
author: Michael Pruett <michael@68k.org>
date: Thu Apr 4 09:21:25 EST 2002

* ./src/libdvdcss.h: IRIX compile fix


--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,7 @@
 
 HEAD
 
+  * ./src/libdvdcss.h: IRIX compile fix by Michael Pruett <michael@68k.org>.
   * ./configure.in: BeOS bug fix. I'm so lame.
   * ./src/ioctl.c: refuse to build if DVD ioctls weren't found.
 
--- a/src/libdvdcss.h
+++ b/src/libdvdcss.h
@@ -2,7 +2,7 @@
  * private.h: private DVD reading library data
  *****************************************************************************
  * Copyright (C) 1998-2001 VideoLAN
- * $Id: libdvdcss.h,v 1.1 2001/12/22 00:08:13 sam Exp $
+ * $Id: libdvdcss.h,v 1.2 2002/04/04 14:21:25 sam Exp $
  *
  * Authors: St�phane Borel <stef@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
@@ -76,7 +76,7 @@
 #   define DVDCSS_DEBUG( x... ) fprintf( stderr, "libdvdcss debug: %s\n", ##x );
 #endif
 
-static __inline__ void _dvdcss_error( dvdcss_handle dvdcss, char *psz_string )
+static inline void _dvdcss_error( dvdcss_handle dvdcss, char *psz_string )
 {
     if( dvdcss->b_errors )
     {
@@ -86,7 +86,7 @@
     dvdcss->psz_error = psz_string;
 }
 
-static __inline__ void _dvdcss_debug( dvdcss_handle dvdcss, char *psz_string )
+static inline void _dvdcss_debug( dvdcss_handle dvdcss, char *psz_string )
 {
     if( dvdcss->b_debug )
     {