summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libass/ass_filesystem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libass/ass_filesystem.c b/libass/ass_filesystem.c
index fa7bbab..79a0d80 100644
--- a/libass/ass_filesystem.c
+++ b/libass/ass_filesystem.c
@@ -159,7 +159,7 @@ static WCHAR *convert_wtf8to16(WCHAR *dst, ASS_StringView src)
const char *str = src.str;
for (const char *end = str + src.len; str < end; str++) {
uint8_t ch = *str;
- switch(wtf8_len_table[ch]) {
+ switch (wtf8_len_table[ch]) {
case 1: // 1 -> 1w
*dst++ = ch;
continue;