[Scummvm-cvs-logs] CVS: scummvm/backends/fs/posix posix-fs.cpp,1.24,1.25

Eugene Sandulenko sev at users.sourceforge.net
Sat Jul 30 14:15:09 CEST 2005


Update of /cvsroot/scummvm/scummvm/backends/fs/posix
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9428/backends/fs/posix

Modified Files:
	posix-fs.cpp 
Log Message:
Remove trailing whitespaces.


Index: posix-fs.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/fs/posix/posix-fs.cpp,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- posix-fs.cpp	24 Jun 2005 15:22:28 -0000	1.24
+++ posix-fs.cpp	30 Jul 2005 21:10:52 -0000	1.25
@@ -45,7 +45,7 @@
 	bool _isDirectory;
 	bool _isValid;
 	String _path;
-	
+
 public:
 	POSIXFilesystemNode();
 	POSIXFilesystemNode(const String &path);
@@ -64,11 +64,11 @@
 static const char *lastPathComponent(const Common::String &str) {
 	const char *start = str.c_str();
 	const char *cur = start + str.size() - 2;
-	
+
 	while (cur > start && *cur != '/') {
 		--cur;
 	}
-	
+
 	return cur+1;
 }
 
@@ -84,7 +84,7 @@
 #ifndef __DC__
 	char buf[MAXPATHLEN];
 	getcwd(buf, MAXPATHLEN);
-	
+
 	_path = buf;
 	_displayName = lastPathComponent(_path);
 	_path += '/';
@@ -99,7 +99,7 @@
 POSIXFilesystemNode::POSIXFilesystemNode(const String &p) {
 	int len = 0, offset = p.size();
 	struct stat st;
-	
+
 	assert(offset > 0);
 
 	_path = p;
@@ -147,7 +147,7 @@
 		// Skip 'invisible' files
 		if (dp->d_name[0] == '.')
 			continue;
-		
+
 		POSIXFilesystemNode entry;
 		entry._displayName = dp->d_name;
 		entry._path = _path;





More information about the Scummvm-git-logs mailing list