aboutsummaryrefslogtreecommitdiffstats
path: root/src/fringe.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fringe.c')
-rw-r--r--src/fringe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fringe.c b/src/fringe.c
index db4f92d6ce4..409c444a317 100644
--- a/src/fringe.c
+++ b/src/fringe.c
@@ -83,7 +83,7 @@ struct fringe_bitmap
83 unsigned width : 8; 83 unsigned width : 8;
84 unsigned period : 8; 84 unsigned period : 8;
85 unsigned align : 2; 85 unsigned align : 2;
86 unsigned dynamic : 1; 86 bool_bf dynamic : 1;
87}; 87};
88 88
89 89
@@ -1664,7 +1664,7 @@ If BITMAP already exists, the existing definition is replaced. */)
1664 Fput (bitmap, Qfringe, make_number (n)); 1664 Fput (bitmap, Qfringe, make_number (n));
1665 } 1665 }
1666 1666
1667 fb.dynamic = 1; 1667 fb.dynamic = true;
1668 1668
1669 xfb = xmalloc (sizeof fb + fb.height * BYTES_PER_BITMAP_ROW); 1669 xfb = xmalloc (sizeof fb + fb.height * BYTES_PER_BITMAP_ROW);
1670 fb.bits = b = (unsigned short *) (xfb + 1); 1670 fb.bits = b = (unsigned short *) (xfb + 1);