mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-04-20 21:57:10 -04:00
check_ide_smart: clang-format again
This commit is contained in:
parent
08d9932c13
commit
bb6e5dac7b
1 changed files with 5 additions and 4 deletions
|
|
@ -118,15 +118,16 @@ struct {
|
|||
char *text;
|
||||
}
|
||||
|
||||
static offline_status_text[] = {{0x00, "NeverStarted"}, {0x02, "Completed"}, {0x04, "Suspended"}, {0x05, "Aborted"}, {0x06, "Failed"}, {0, 0}};
|
||||
static offline_status_text[] = {{0x00, "NeverStarted"}, {0x02, "Completed"}, {0x04, "Suspended"},
|
||||
{0x05, "Aborted"}, {0x06, "Failed"}, {0, 0}};
|
||||
|
||||
static struct {
|
||||
__u8 value;
|
||||
char *text;
|
||||
} smart_command[] = {{SMART_ENABLE, "SMART_ENABLE"},
|
||||
{SMART_DISABLE, "SMART_DISABLE"},
|
||||
{SMART_IMMEDIATE_OFFLINE, "SMART_IMMEDIATE_OFFLINE"},
|
||||
{SMART_AUTO_OFFLINE, "SMART_AUTO_OFFLINE"}};
|
||||
{SMART_DISABLE, "SMART_DISABLE"},
|
||||
{SMART_IMMEDIATE_OFFLINE, "SMART_IMMEDIATE_OFFLINE"},
|
||||
{SMART_AUTO_OFFLINE, "SMART_AUTO_OFFLINE"}};
|
||||
|
||||
/* Index to smart_command table, keep in order */
|
||||
enum SmartCommand {
|
||||
|
|
|
|||
Loading…
Reference in a new issue