added void parameter to remove_node_from_end

This commit is contained in:
Václav Šmejkal 2023-02-02 17:40:14 +01:00
parent 00fbba4159
commit 28aff070eb
Signed by: ENGO150
GPG Key ID: 4A57E86482968843

View File

@ -64,7 +64,7 @@ void push_to_list(char *identifier)
}
}
void remove_node_from_end()
void remove_node_from_end(void)
{
node_t *buffer = head;