ソースを参照

Merge 6456ce9b09 into f42aa68fc7

pull/81/merge
Richard Barnes GitHub 5ヶ月前
コミット
a05d3c5ee1
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: B5690EEEBB952194
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      caca/charset.c

+ 2
- 2
caca/charset.c ファイルの表示

@@ -169,8 +169,8 @@ size_t caca_utf32_to_utf8(char *buf, uint32_t ch)

switch(bytes)
{
case 4: *--parser = (ch | 0x80) & 0xbf; ch >>= 6;
case 3: *--parser = (ch | 0x80) & 0xbf; ch >>= 6;
case 4: *--parser = (ch | 0x80) & 0xbf; ch >>= 6; __attribute__((fallthrough));
case 3: *--parser = (ch | 0x80) & 0xbf; ch >>= 6; __attribute__((fallthrough));
case 2: *--parser = (ch | 0x80) & 0xbf; ch >>= 6;
}
*--parser = ch | mark[bytes];


読み込み中…
キャンセル
保存