Dead code removal

XKBGeom.c:118:27: warning: Assigned value is always the same as the existing value
    for (key=row->keys,pos=k=0;k<row->num_keys;k++,key++) {
                       ~~~^~~~
XKBGeom.c:115:5: warning: Value stored to 'pos' is never read
    pos= 0;
    ^    ~

Found-by: clang static analyzer
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
This commit is contained in:
Jeremy Huddleston 2011-05-04 11:35:31 -07:00
parent 4024091678
commit 46d04bc4e7

View file

@ -112,7 +112,6 @@ XkbBoundsPtr bounds,sbounds;
if ((!geom)||(!section)||(!row))
return False;
pos= 0;
bounds= &row->bounds;
bzero(bounds,sizeof(XkbBoundsRec));
for (key=row->keys,pos=k=0;k<row->num_keys;k++,key++) {