diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util/talloc_stack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util/talloc_stack.c b/lib/util/talloc_stack.c index f34d495294..2db56747a3 100644 --- a/lib/util/talloc_stack.c +++ b/lib/util/talloc_stack.c @@ -72,8 +72,8 @@ static struct talloc_stackframe *talloc_stackframe_create(void) #undef malloc #endif #endif - struct talloc_stackframe *ts = - (struct talloc_stackframe *)malloc(sizeof(struct talloc_stackframe)); + struct talloc_stackframe *ts = (struct talloc_stackframe *)malloc( + sizeof(struct talloc_stackframe)); #if defined(PARANOID_MALLOC_CHECKER) #define malloc(s) __ERROR_DONT_USE_MALLOC_DIRECTLY #endif |