diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fringe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fringe.c b/src/fringe.c index dbcd52be058..5d3108a6c70 100644 --- a/src/fringe.c +++ b/src/fringe.c | |||
| @@ -1456,9 +1456,9 @@ init_fringe_bitmap (int which, struct fringe_bitmap *fb, int once_p) | |||
| 1456 | { | 1456 | { |
| 1457 | unsigned short b = *bits; | 1457 | unsigned short b = *bits; |
| 1458 | b <<= (16 - fb->width); | 1458 | b <<= (16 - fb->width); |
| 1459 | #ifndef WORDS_BIGENDIAN | 1459 | /* Windows is little-endian, so the next line is always |
| 1460 | needed. */ | ||
| 1460 | b = ((b >> 8) | (b << 8)); | 1461 | b = ((b >> 8) | (b << 8)); |
| 1461 | #endif | ||
| 1462 | *bits++ = b; | 1462 | *bits++ = b; |
| 1463 | } | 1463 | } |
| 1464 | #endif | 1464 | #endif |