Wrap inline structure definitions

This commit is contained in:
Benny Baumann
2020-11-01 01:49:54 +01:00
parent 45869513bf
commit 0d64ca9262
2 changed files with 12 additions and 5 deletions

View File

@ -21,12 +21,13 @@ Panel* IOPriorityPanel_new(IOPriority currPrio) {
Panel_setHeader(this, "IO Priority:");
Panel_add(this, (Object*) ListItem_new("None (based on nice)", IOPriority_None));
if (currPrio == IOPriority_None) {
Panel_setSelected(this, 0);
}
static const struct { int klass; const char* name; } classes[] = {
static const struct {
int klass;
const char* name;
} classes[] = {
{ .klass = IOPRIO_CLASS_RT, .name = "Realtime" },
{ .klass = IOPRIO_CLASS_BE, .name = "Best-effort" },
{ .klass = 0, .name = NULL }