mirror of
https://github.com/morgant/mlclock.git
synced 2024-11-26 00:49:21 +00:00
Formatting: fix spacing around ++ operators
This commit is contained in:
parent
21b70aa8ba
commit
ca8f15da73
10
mlclock.c
10
mlclock.c
@ -133,7 +133,7 @@ int main(int argc, char **argv) {
|
|||||||
height = logical.height;
|
height = logical.height;
|
||||||
|
|
||||||
xcol.flags = DoRed|DoGreen|DoBlue;
|
xcol.flags = DoRed|DoGreen|DoBlue;
|
||||||
for ( i = 0; i < 2; i ++ ) {
|
for ( i = 0; i < 2; i++ ) {
|
||||||
xcol.red = Color[i][0];
|
xcol.red = Color[i][0];
|
||||||
xcol.green = Color[i][1];
|
xcol.green = Color[i][1];
|
||||||
xcol.blue = Color[i][2];
|
xcol.blue = Color[i][2];
|
||||||
@ -255,7 +255,7 @@ void readrc() {
|
|||||||
Mode = Near = Head = NONE;
|
Mode = Near = Head = NONE;
|
||||||
Form1 = Form2 = LocaleName = FSName = NULL;
|
Form1 = Form2 = LocaleName = FSName = NULL;
|
||||||
|
|
||||||
for ( i = 0; i < 3; i ++ ) {
|
for ( i = 0; i < 3; i++ ) {
|
||||||
Color[0][i] = 0;
|
Color[0][i] = 0;
|
||||||
Color[1][i] = 0xffff;
|
Color[1][i] = 0xffff;
|
||||||
}
|
}
|
||||||
@ -319,7 +319,7 @@ void readrc() {
|
|||||||
cn = N[i].sw;
|
cn = N[i].sw;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
i ++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch ( cn ) {
|
switch ( cn ) {
|
||||||
@ -425,8 +425,8 @@ void getRGB(char *color, int *store) {
|
|||||||
XColor rgb, hard;
|
XColor rgb, hard;
|
||||||
|
|
||||||
if ( color[0] == '#' ) {
|
if ( color[0] == '#' ) {
|
||||||
color ++;
|
color++;
|
||||||
for ( i = 0; i < 3; i ++ ) {
|
for ( i = 0; i < 3; i++ ) {
|
||||||
strncpy(tmpcolor, color, 2);
|
strncpy(tmpcolor, color, 2);
|
||||||
sscanf(tmpcolor, "%x", store);
|
sscanf(tmpcolor, "%x", store);
|
||||||
(*store) *= 256;
|
(*store) *= 256;
|
||||||
|
Loading…
Reference in New Issue
Block a user