summarylogtreecommitdiffstats
path: root/202_invalid_casts.diff
blob: 08ea4f9192706a28aa1aaaf2dc322151adbfcd3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
--- tmview-01.03.orig/lX/writelx.c
+++ tmview-01.03/lX/writelx.c
@@ -908,7 +908,7 @@
     }
     srow+=sbmu_wide;
     sbmu=srow;
-    ((char*)ydest)+=ibytes_per_line;
+    ydest=((char*)ydest)+ibytes_per_line;
   }
   if(directscreen) {
     XPutImage(dpy,dviwin,imagecopygc,offimage,tx,ty,tx,ty,w,h);
@@ -996,7 +996,7 @@
     }
     srow+=sbmu_wide;
     sbmu=srow;
-    ((char*)ydest)+=ibytes_per_line;
+    ydest=((char*)ydest)+ibytes_per_line;
   }
   if(directscreen) {
     XPutImage(dpy,dviwin,imagecopygc,offimage,tx,ty,tx,ty,w,h); 
@@ -1034,7 +1034,7 @@
        ISET_PIXEL(xdest,cpix);
        xdest++;
     }
-    ((char*)ydest)+=ibytes_per_line;
+    ydest=((char*)ydest)+ibytes_per_line;
   }
   if(directscreen) {
     XSetForeground(dpy,winfillgc,cpix);
@@ -1084,7 +1084,7 @@
 #endif
       xdest++;
     }
-    ((char*)ydest)+=ibytes_per_line;
+    ydest=((char*)ydest)+ibytes_per_line;
   }
   if(directscreen) {
     XPutImage(dpy,dviwin,imagecopygc,offimage,tx,ty,tx,ty,w,h); 
@@ -1126,7 +1126,7 @@
       }
       xdest++;
     }
-    ((char*)ydest)+=ibytes_per_line;
+    ydest=((char*)ydest)+ibytes_per_line;
   }
   if(directscreen) {
     XPutImage(dpy,dviwin,imagecopygc,offimage,tx,ty,tx,ty,w,h);