Fix duplicate symbols when lib is included statically more than once

pull/352/head
r-lyeh 2016-08-25 13:32:00 +02:00 committed by GitHub
parent f9a04924af
commit 7d2367053e
1 changed files with 1 additions and 1 deletions

View File

@ -5077,7 +5077,7 @@ errorEnd:
}
// read 16bit value and convert to 24bit RGB
void stbi__tga_read_rgb16(stbi__context *s, stbi_uc* out)
static void stbi__tga_read_rgb16(stbi__context *s, stbi_uc* out)
{
stbi__uint16 px = stbi__get16le(s);
stbi__uint16 fiveBitMask = 31;