fix typo in accidentally-checked-in stb_image.h

pull/163/merge
Sean Barrett 2015-09-03 22:55:01 -07:00
parent 4743a1a6e6
commit 7ac0f9c9b0
1 changed files with 1 additions and 1 deletions

View File

@ -3544,7 +3544,7 @@ static void stbi__fill_bits(stbi__zbuf *z)
{
do {
STBI_ASSERT(z->code_buffer < (1U << z->num_bits));
z->code_buffer |= (usigned int) stbi__zget8(z) << z->num_bits;
z->code_buffer |= (unsigned int) stbi__zget8(z) << z->num_bits;
z->num_bits += 8;
} while (z->num_bits <= 24);
}