changeset 35161:86790eb037fa

Try to fix compilation error on some Windows building environments after r35250.
author cehoyos
date Sat, 20 Oct 2012 07:13:46 +0000
parents bbcd42f7f0af
children 69b82f839935
files libdvdcss/libdvdcss.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libdvdcss/libdvdcss.c	Thu Oct 18 12:38:58 2012 +0000
+++ b/libdvdcss/libdvdcss.c	Sat Oct 20 07:13:46 2012 +0000
@@ -120,7 +120,7 @@
 #   include <limits.h>
 #endif
 
-#ifdef HAVE_DIRECT_H
+#if HAVE_DIRECT_H
 #   include <direct.h>
 #endif
 
@@ -238,7 +238,7 @@
      */
     if( psz_cache == NULL || psz_cache[0] == '\0' )
     {
-#ifdef HAVE_DIRECT_H
+#if HAVE_DIRECT_H
         typedef HRESULT( WINAPI *SHGETFOLDERPATH )
                        ( HWND, int, HANDLE, DWORD, LPTSTR );