diff options
Diffstat (limited to 'lib/types/types.h')
-rw-r--r-- | lib/types/types.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/types/types.h b/lib/types/types.h index d660d6b..b22c0b0 100644 --- a/lib/types/types.h +++ b/lib/types/types.h @@ -70,10 +70,10 @@ struct boot_command { char *console; }; -struct boot_status { - enum { - BOOT_STATUS_INFO, - BOOT_STATUS_ERROR, +struct status { + enum status_type { + STATUS_INFO, + STATUS_ERROR, } type; char *message; char *detail; |