* src/sfnt/pngshim.c (premultiply_data): Fix compiler warnings.

This commit is contained in:
Werner Lemberg 2017-08-16 13:32:17 +02:00
parent c9d7c03fa1
commit cadd29de08
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2017-08-16 Werner Lemberg <wl@gnu.org>
* src/sfnt/pngshim.c (premultiply_data): Fix compiler warnings.
2017-08-15 Behdad Esfahbod <behdad@behdad.org>
[sfnt] Speed up PNG image loading.

View File

@ -57,8 +57,6 @@
{
unsigned int i = 0, limit;
FT_UNUSED( png );
/* the `vector_size' attribute was introduced in gcc 3.1, which */
/* predates clang; the `__BYTE_ORDER__' preprocessor symbol was */
/* introduced in gcc 4.6 and clang 3.2, respectively */
@ -78,7 +76,7 @@
limit = row_info->rowbytes - 16 + 1;
for ( ; i < limit; i += 16 )
{
char* base = &data[i];
unsigned char* base = &data[i];
v82 s, s0, s1, a;
v82 ma = { 1, 1, 3, 3, 5, 5, 7, 7 };
@ -106,6 +104,8 @@
}
#endif /* use `vector_size' */
FT_UNUSED( png );
limit = row_info->rowbytes;
for ( ; i < limit; i += 4 )
{