diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-22 23:56:00 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-22 23:56:00 -0500 |
commit | f8f1db1b8d6476016f0e2f03504abd87025baa99 (patch) | |
tree | f625349321ee0ee02068cff89784079f9f111d27 | |
parent | daf89b29a3ef37c272394cba3929290f2980a421 (diff) |
fix order of FsType
-rw-r--r-- | filesystem.h | 2 |
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; |