From 5f2befc9d7812680dd4993500410bf64fce93fb1 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Tue, 22 Nov 2011 19:54:53 +0000 Subject: [PATCH] Monotone-Parent: c9072cd9f62ce341982a28f6b662d079949b101d Monotone-Revision: 819868044eb268089e0c5cc2f35f71e9b157e69a Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-11-22T19:54:53 Monotone-Branch: ca.inverse.sogo --- OpenChange/NSArray+MAPIStore.m | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/OpenChange/NSArray+MAPIStore.m b/OpenChange/NSArray+MAPIStore.m index 5e106c1cb..6587154f9 100644 --- a/OpenChange/NSArray+MAPIStore.m +++ b/OpenChange/NSArray+MAPIStore.m @@ -157,9 +157,9 @@ max = [self count]; - list = talloc_zero(memCtx, struct LongArray_r); + list = talloc_zero (memCtx, struct LongArray_r); list->cValues = max; - list->lpl = talloc_array(list, uint32_t, max); + list->lpl = talloc_array (list, uint32_t, max); for (count = 0; count < max; count++) { number = [self objectAtIndex: count]; @@ -208,9 +208,9 @@ max = [self count]; - list = talloc_zero(memCtx, struct WStringArray_r); + list = talloc_zero (memCtx, struct WStringArray_r); list->cValues = max; - list->lppszW = talloc_array(list, const char *, max); + list->lppszW = talloc_array (list, const char *, max); for (count = 0; count < max; count++) list->lppszW[count] = [[self objectAtIndex: count] asUnicodeInMemCtx: list->lppszW]; @@ -258,9 +258,9 @@ max = [self count]; - list = talloc_zero(memCtx,struct BinaryArray_r); + list = talloc_zero (memCtx,struct BinaryArray_r); list->cValues = max; - list->lpbin = talloc_array(list, struct Binary_r, max); + list->lpbin = talloc_array (list, struct Binary_r, max); for (count = 0; count < max; count++) {