Chameleon

Chameleon Commit Details

Date:2012-10-24 04:41:00 (11 years 6 months ago)
Author:Evan Lojewski
Commit:2071
Parents: 2070
Message:Remove extraneous parentheses
Changes:
M/trunk/i386/libsaio/nvidia_helper.c
M/trunk/i386/libsaio/nvidia.c

File differences

trunk/i386/libsaio/nvidia.c
28912891
28922892
28932893
2894
2894
28952895
28962896
28972897
......
29102910
29112911
29122912
2913
2913
29142914
29152915
29162916
channel1 |= ( 0x1 << entries[i].index);
entries[i].type = TYPE_GROUPED;
if ((entries[i-1].type == 0x0))
if (entries[i-1].type == 0x0)
{
channel1 |= ( 0x1 << entries[i-1].index);
entries[i-1].type = TYPE_GROUPED;
channel2 |= ( 0x1 << entries[i].index);
entries[i].type = TYPE_GROUPED;
if ((entries[i - 1].type == 0x0))
if (entries[i - 1].type == 0x0)
{
channel2 |= ( 0x1 << entries[i-1].index);
entries[i-1].type = TYPE_GROUPED;
trunk/i386/libsaio/nvidia_helper.c
9191
9292
9393
94
94
9595
9696
9797
......
143143
144144
145145
146
146
entry = cardList;
while(entry)
{
if((entry->id == id))
if(entry->id == id)
{
return entry;
}
}
}
}
}
}

Archive Download the corresponding diff file

Revision: 2071