diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/hardwaremain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/hardwaremain.c b/src/lib/hardwaremain.c index cee48ab8f2..7badfbc4ef 100644 --- a/src/lib/hardwaremain.c +++ b/src/lib/hardwaremain.c @@ -60,11 +60,11 @@ struct boot_state { { \ .name = #state_, \ .id = state_, \ - .post_code = POSTCODE_ ## state_, \ + .post_code = POSTCODE_ ## state_, \ .phases = { { NULL, 0 }, { NULL, 0 } }, \ .run_state = run_func_, \ .arg = NULL, \ - .complete = false, \ + .complete = false, \ } #define BS_INIT_ENTRY(state_, run_func_) \ [state_] = BS_INIT(state_, run_func_) |