From 29dfe9a61456dba8c8e4cdae0a90cfa3eef1cd2a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 6 Nov 2018 12:39:40 +1100 Subject: Cleanup: style --- source/blender/blenlib/intern/BLI_heap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib/intern/BLI_heap.c') diff --git a/source/blender/blenlib/intern/BLI_heap.c b/source/blender/blenlib/intern/BLI_heap.c index cef3eb2dafb..4d662f067ba 100644 --- a/source/blender/blenlib/intern/BLI_heap.c +++ b/source/blender/blenlib/intern/BLI_heap.c @@ -461,7 +461,7 @@ static void fastheap_down(FastHeap *heap, uint start_i, const FastHeapNode *init #if 1 /* The compiler isn't smart enough to realize that all computations * using index here can be modified to work with byte offset. */ - uint8_t *const tree_buf = (uint8_t*)heap->tree; + uint8_t * const tree_buf = (uint8_t *)heap->tree; #define OFFSET(i) (i * (uint)sizeof(FastHeapNode)) #define NODE(offset) (*(FastHeapNode*)(tree_buf + (offset))) -- cgit v1.2.3