WINGs: Value stored to 'pos'|'_w'|'done' is never read

Signed-off-by: Amadeusz Sławiński <amade@asmblr.net>
This commit is contained in:
Amadeusz Sławiński
2014-05-17 15:59:48 +01:00
committed by Carlos R. Mafra
parent f41880cf05
commit c1031965e9
-5
View File
@@ -1023,7 +1023,6 @@ static void cursorToTextPosition(Text * tPtr, int x, int y)
if ((dir ? tb->next : tb->prior)) {
tb = (dir ? tb->next : tb->prior);
} else {
pos = tb->used;
break; /* goto _doneH; */
}
}
@@ -1048,9 +1047,6 @@ static void cursorToTextPosition(Text * tPtr, int x, int y)
}
}
if (tb->blank)
_w = 0;
_y = tb->sections[s]._y;
while (tb) {
@@ -1117,7 +1113,6 @@ static void cursorToTextPosition(Text * tPtr, int x, int y)
if ((dir ? tb->next : tb->prior)) {
tb = (dir ? tb->next : tb->prior);
} else {
done = True;
break;
}