mirror of
https://github.com/labwc/labwc.git
synced 2026-04-19 06:46:31 -04:00
CodeStyle: prevent space in code indents
This commit is contained in:
parent
a3fff9f87b
commit
1995a33df9
12 changed files with 76 additions and 67 deletions
|
|
@ -26,7 +26,7 @@ u32(float *rgba)
|
|||
r[i] = rgba[i] * 255;
|
||||
}
|
||||
return ((r[3] & 0xff) << 24) | ((r[0] & 0xff) << 16) |
|
||||
((r[1] & 0xff) << 8) | (r[2] & 0xff);
|
||||
((r[1] & 0xff) << 8) | (r[2] & 0xff);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue