; Minor fix of recent change in fringe.c

* src/fringe.c (init_fringe_bitmap) [HAVE_NTGUI]: Remove an
unnecessary #ifdef introduced in a recent change.
This commit is contained in:
Eli Zaretskii 2017-02-19 18:40:52 +02:00
parent 35acb3950f
commit f03d936cd7

View file

@ -1456,9 +1456,9 @@ init_fringe_bitmap (int which, struct fringe_bitmap *fb, int once_p)
{
unsigned short b = *bits;
b <<= (16 - fb->width);
#ifndef WORDS_BIGENDIAN
/* Windows is little-endian, so the next line is always
needed. */
b = ((b >> 8) | (b << 8));
#endif
*bits++ = b;
}
#endif