Index: trunk/i386/libsaio/nvidia.c =================================================================== --- trunk/i386/libsaio/nvidia.c (revision 2070) +++ trunk/i386/libsaio/nvidia.c (revision 2071) @@ -2891,7 +2891,7 @@ 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; @@ -2910,7 +2910,7 @@ 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; Index: trunk/i386/libsaio/nvidia_helper.c =================================================================== --- trunk/i386/libsaio/nvidia_helper.c (revision 2070) +++ trunk/i386/libsaio/nvidia_helper.c (revision 2071) @@ -91,7 +91,7 @@ entry = cardList; while(entry) { - if((entry->id == id)) + if(entry->id == id) { return entry; } @@ -143,4 +143,4 @@ } } } -} \ No newline at end of file +}