Cosmetics: Avoid confusing indentation

This line had me confused for a second because
the condition looked like a cast and the if just
looked misplaced. Add a line break to prevent
such confusion.
This commit is contained in:
Matthias Clasen 2021-11-06 10:18:20 -04:00 committed by Behdad Esfahbod
parent 3471f8f69e
commit 1fd7fd9823
1 changed files with 2 additions and 1 deletions

View File

@ -750,7 +750,8 @@ hb_ot_layout_script_select_language (hb_face_t *face,
if (s.find_lang_sys_index (HB_OT_TAG_DEFAULT_LANGUAGE, language_index))
return false;
if (language_index) *language_index = HB_OT_LAYOUT_DEFAULT_LANGUAGE_INDEX;
if (language_index)
*language_index = HB_OT_LAYOUT_DEFAULT_LANGUAGE_INDEX;
return false;
}