Closed as not planned
Description
Hi, i find when i format a document use clang-format, it will add redundant spaces before newline when this line is too long to break.
Seems it want to align to "
in first line, we don't need redundant spaces before new line, only need Tab
.
- Code sample
void __init bl31_prepare_next_image_entry(void)
{
INFO("BL31: Preparing for EL3 exit to %s world\n",
(image_type == SECURE) ? "secure" : "normal");
}