Pointer assignment syntax tweak
Correcting for a warning given by indent: Warning:old style assignment ambiguity in "=*". Assuming "= *"
This commit is contained in:
parent
1bb6bbeef4
commit
3e96684bde
1 changed files with 1 additions and 1 deletions
|
|
@ -20948,7 +20948,7 @@ static void render_all_nodes_starting_at(struct label_node** node)
|
|||
struct label_node* current_node;
|
||||
if (*node!=NULL)
|
||||
{
|
||||
current_node=*node;
|
||||
current_node = *node;
|
||||
while (current_node!=first_label_node_in_redo_stack)
|
||||
{
|
||||
if (current_node->is_enabled==TRUE)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue