Reformat some deeply-indented lines

This commit is contained in:
Rangi42
2024-02-18 18:14:13 -05:00
parent 1b08a12b26
commit 3860ab11c7
2 changed files with 4 additions and 5 deletions

View File

@@ -241,8 +241,7 @@ size_t charmap_ConvertNext(char const **input, uint8_t **output)
} else if (**input) { // No match found, but there is some input left
int firstChar = **input;
// This will write the codepoint's value to `output`, little-endian
size_t codepointLen = readUTF8Char(output ? *output : NULL,
*input);
size_t codepointLen = readUTF8Char(output ? *output : NULL, *input);
if (codepointLen == 0)
error("Input string is not valid UTF-8\n");