diff options
author | Volker Lendecke <vl@samba.org> | 2010-03-21 15:14:48 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-03-21 17:12:23 +0100 |
commit | 6695b0e87d135dff759ce202cf61de49e062e946 (patch) | |
tree | 91cebf7809356d8057de72b6dc1209ee46d688c2 /lib | |
parent | 6c39b10f1d3927c4e6dc31523b79b6611f6f8bc6 (diff) | |
download | samba-6695b0e87d135dff759ce202cf61de49e062e946.tar.gz samba-6695b0e87d135dff759ce202cf61de49e062e946.tar.bz2 samba-6695b0e87d135dff759ce202cf61de49e062e946.zip |
Trim an overlong line
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 |