From 6695b0e87d135dff759ce202cf61de49e062e946 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 21 Mar 2010 15:14:48 +0100 Subject: Trim an overlong line --- lib/util/talloc_stack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/util') 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 -- cgit