2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 09:58:09 +00:00

code: Fix spaced indentation where found

Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Pavel Emelyanov 2012-08-11 21:36:03 +04:00
parent 9efd12f2c7
commit cdc4c99835
3 changed files with 7 additions and 7 deletions

View File

@ -235,7 +235,7 @@ void rb_erase(struct rb_node *node, struct rb_root *root)
} else } else
root->rb_node = child; root->rb_node = child;
color: color:
if (color == RB_BLACK) if (color == RB_BLACK)
__rb_erase_color(child, parent, root); __rb_erase_color(child, parent, root);
} }