diff options
Diffstat (limited to 'src/core/mount.h')
-rw-r--r-- | src/core/mount.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/mount.h b/src/core/mount.h index 2edb75eb54..22a14e1a3f 100644 --- a/src/core/mount.h +++ b/src/core/mount.h @@ -54,12 +54,6 @@ typedef enum MountExecCommand { _MOUNT_EXEC_COMMAND_INVALID = -1 } MountExecCommand; -typedef struct MountParameters { - char *what; - char *options; - char *fstype; -} MountParameters; - typedef enum MountResult { MOUNT_SUCCESS, MOUNT_FAILURE_RESOURCES, @@ -71,6 +65,12 @@ typedef enum MountResult { _MOUNT_RESULT_INVALID = -1 } MountResult; +typedef struct MountParameters { + char *what; + char *options; + char *fstype; +} MountParameters; + struct Mount { Unit meta; |