whitespace edits, make formatting for functions consustent at least within the file.
This commit is contained in:
@@ -2804,7 +2804,8 @@ uiBut *uiDefBut(uiBlock *block, int type, int retval, const char *str, int x1, i
|
||||
* otherwise return -1.
|
||||
* (1<<findBitIndex(x))==x for powers of two.
|
||||
*/
|
||||
static int findBitIndex(unsigned int x) {
|
||||
static int findBitIndex(unsigned int x)
|
||||
{
|
||||
if (!x || (x&(x-1))!=0) { /* x&(x-1) strips lowest bit */
|
||||
return -1;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user