From 1520c4d2cf5646ac13d05976068195a3ad75852c Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 31 May 2005 21:38:39 +0000 Subject: [PATCH] 0644 isn't bogus ... --- stepmania/src/RageFileDriverDirectHelpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageFileDriverDirectHelpers.cpp b/stepmania/src/RageFileDriverDirectHelpers.cpp index c82fbb486a..8448d50c42 100644 --- a/stepmania/src/RageFileDriverDirectHelpers.cpp +++ b/stepmania/src/RageFileDriverDirectHelpers.cpp @@ -152,7 +152,7 @@ bool PathReady( CString path ) // Try to write a file. const CString sFile = path + "temp"; - int fd = DoOpen( sFile, O_WRONLY|O_CREAT|O_TRUNC, 0644 ); //last arg is a bogus one + int fd = DoOpen( sFile, O_WRONLY|O_CREAT|O_TRUNC, 0644 ); if( fd == -1 ) return false;