zstd_compress_superblock.c ``` if (nbSeq < 0x7F) *op++ = (BYTE)nbSeq; ``` zstd_compress.c: ``` if (nbSeq < 128) { *op++ = (BYTE)nbSeq; ```