Change the names of parser result structs
Change the name of structs CommandResult and ConfigResult to CommandResultIR and ConfigResultIR to show they are an intermediate representation used during parsing.
This commit is contained in:
committed by
Michael Stapelberg
parent
dda9a7f6e0
commit
45fa4b7d23
@ -117,7 +117,7 @@ IPC_HANDLER(command) {
|
||||
char *command = scalloc(message_size + 1);
|
||||
strncpy(command, (const char*)message, message_size);
|
||||
LOG("IPC: received: *%s*\n", command);
|
||||
struct CommandResult *command_output = parse_command((const char*)command);
|
||||
struct CommandResultIR *command_output = parse_command((const char*)command);
|
||||
free(command);
|
||||
|
||||
if (command_output->needs_tree_render)
|
||||
|
Reference in New Issue
Block a user