summaryrefslogtreecommitdiff
path: root/app/xterm/linedata.c
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2011-03-07 20:41:28 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2011-03-07 20:41:28 +0000
commitc09bc985d772a6d148187193e5ff31687e27e872 (patch)
tree68abbdba6390bb334b1783fb9ca0f3f973cc11a2 /app/xterm/linedata.c
parentd059bb98cf4aca64c2ef777f96a3de375325132d (diff)
Update to xterm version 269.
Tested and ok ajacoutot@, jasper@, krw@, shadchin@
Diffstat (limited to 'app/xterm/linedata.c')
-rw-r--r--app/xterm/linedata.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/xterm/linedata.c b/app/xterm/linedata.c
index d39772b72..5d47d1a11 100644
--- a/app/xterm/linedata.c
+++ b/app/xterm/linedata.c
@@ -1,8 +1,8 @@
-/* $XTermId: linedata.c,v 1.78 2010/04/14 23:41:10 tom Exp $ */
+/* $XTermId: linedata.c,v 1.79 2011/01/21 00:07:35 tom Exp $ */
/************************************************************
-Copyright 2009,2010 by Thomas E. Dickey
+Copyright 2009-2010,2011 by Thomas E. Dickey
All Rights Reserved
@@ -189,7 +189,7 @@ initLineData(XtermWidget xw)
#define CellDataSize(screen) (SizeOfCellData + screen->lineExtra)
#define CellDataAddr(screen, data, cell) \
- (CellData *)((char *)data + (cell * CellDataSize(screen)))
+ (CellData *)(void *) ((char *)data + (cell * CellDataSize(screen)))
CellData *
newCellData(XtermWidget xw, Cardinal count)