[MPlayer-cvslog] r24830 - trunk/loader/win32.c

reimar subversion at mplayerhq.hu
Sun Oct 21 15:45:04 CEST 2007


Author: reimar
Date: Sun Oct 21 15:45:04 2007
New Revision: 24830

Log:
Replace hardcoded 0 by equivalent O_RDONLY


Modified:
   trunk/loader/win32.c

Modified: trunk/loader/win32.c
==============================================================================
--- trunk/loader/win32.c	(original)
+++ trunk/loader/win32.c	Sun Oct 21 15:45:04 2007
@@ -3560,7 +3560,7 @@ static HANDLE WINAPI expCreateFileA(LPCS
     if (strstr(cs1, "WINNOV.bmp"))
     {
 	int r;
-	r=open("/dev/null", 0);
+	r=open("/dev/null", O_RDONLY);
 	return r;
     }
 



More information about the MPlayer-cvslog mailing list