summaryrefslogtreecommitdiff
path: root/filesystem.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-01-22 23:56:00 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-01-22 23:56:00 -0500
commitf8f1db1b8d6476016f0e2f03504abd87025baa99 (patch)
treef625349321ee0ee02068cff89784079f9f111d27 /filesystem.h
parentdaf89b29a3ef37c272394cba3929290f2980a421 (diff)
fix order of FsType
Diffstat (limited to 'filesystem.h')
-rw-r--r--filesystem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/filesystem.h b/filesystem.h
index 764f45a..725b231 100644
--- a/filesystem.h
+++ b/filesystem.h
@@ -4,8 +4,8 @@
typedef enum {
FS_NON_EXISTENT,
FS_FILE,
- FS_DIRECTORY,
FS_LINK,
+ FS_DIRECTORY,
FS_OTHER
} FsType;