Fix missed precommit formatting

This commit is contained in:
Lucian Copeland 2021-06-20 17:00:56 -04:00
parent 2c30312dd4
commit 626e4e9748

View File

@ -32,12 +32,12 @@
#include "supervisor/memory.h" #include "supervisor/memory.h"
enum { enum {
SUPERVISOR_NEXT_CODE_OPT_RELOAD_ON_SUCCESS = 0x1, SUPERVISOR_NEXT_CODE_OPT_RELOAD_ON_SUCCESS = 0x1,
SUPERVISOR_NEXT_CODE_OPT_RELOAD_ON_ERROR = 0x2, SUPERVISOR_NEXT_CODE_OPT_RELOAD_ON_ERROR = 0x2,
SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_SUCCESS = 0x4, SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_SUCCESS = 0x4,
SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_ERROR = 0x8, SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_ERROR = 0x8,
SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_RELOAD = 0x10, SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_RELOAD = 0x10,
SUPERVISOR_NEXT_CODE_OPT_NEWLY_SET = 0x20, SUPERVISOR_NEXT_CODE_OPT_NEWLY_SET = 0x20,
}; };
typedef struct { typedef struct {
@ -45,7 +45,7 @@ typedef struct {
char filename[]; char filename[];
} next_code_info_t; } next_code_info_t;
extern supervisor_allocation* next_code_allocation; extern supervisor_allocation *next_code_allocation;
extern volatile bool reload_requested; extern volatile bool reload_requested;