Cycles: Code cleanup, spaces around keywords
This inconsistency drove me totally crazy, it's really confusing when it's inconsistent especially when you work on both Cycles and Blender sides. Shouldn;t cause merge PITA, it's whitespace changes only, Git should be able to merge it nicely.
This commit is contained in:
@@ -55,7 +55,7 @@ void *util_aligned_malloc(size_t size, int alignment)
|
||||
return malloc(size);
|
||||
#elif defined(__FreeBSD__) || defined(__NetBSD__)
|
||||
void *result;
|
||||
if (posix_memalign(&result, alignment, size)) {
|
||||
if(posix_memalign(&result, alignment, size)) {
|
||||
/* Non-zero means allocation error
|
||||
* either no allocation or bad alignment value.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user