From 7ac0f9c9b0cc72549f85716b1c3dcd178b4f668d Mon Sep 17 00:00:00 2001 From: Sean Barrett Date: Thu, 3 Sep 2015 22:55:01 -0700 Subject: [PATCH] fix typo in accidentally-checked-in stb_image.h --- stb_image.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stb_image.h b/stb_image.h index 67d2981..b9b265f 100644 --- a/stb_image.h +++ b/stb_image.h @@ -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); }