misc/libphyslayer/physfscompat.h
changeset 10017 de822cd3df3a
parent 9991 3858d99476f5
child 10108 c68cf030eded
--- a/misc/libphyslayer/physfscompat.h	Tue Jan 21 22:38:13 2014 +0100
+++ b/misc/libphyslayer/physfscompat.h	Tue Jan 21 22:43:06 2014 +0100
@@ -34,20 +34,20 @@
 
 typedef enum PHYSFS_FileType
 {
-	PHYSFS_FILETYPE_REGULAR,
-	PHYSFS_FILETYPE_DIRECTORY,
-	PHYSFS_FILETYPE_SYMLINK,
-	PHYSFS_FILETYPE_OTHER
+    PHYSFS_FILETYPE_REGULAR,
+    PHYSFS_FILETYPE_DIRECTORY,
+    PHYSFS_FILETYPE_SYMLINK,
+    PHYSFS_FILETYPE_OTHER
 } PHYSFS_FileType;
 
 typedef struct PHYSFS_Stat
 {
-	PHYSFS_sint64 filesize;
-	PHYSFS_sint64 modtime;
-	PHYSFS_sint64 createtime;
-	PHYSFS_sint64 accesstime;
-	PHYSFS_FileType filetype;
-	int readonly;
+    PHYSFS_sint64 filesize;
+    PHYSFS_sint64 modtime;
+    PHYSFS_sint64 createtime;
+    PHYSFS_sint64 accesstime;
+    PHYSFS_FileType filetype;
+    int readonly;
 } PHYSFS_Stat;
 
 PHYSFS_DECL int PHYSFS_stat(const char *fname, PHYSFS_Stat *stat);