From 6a305f32b2e218608299b9c0dc5cbf8264a98ce5 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 11 Aug 1996 22:27:09 -0400 Subject: Formatting changes. From-SVN: r12617 --- gcc/objc/sarray.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gcc/objc/sarray.c') diff --git a/gcc/objc/sarray.c b/gcc/objc/sarray.c index 66bf06b..fec92b1 100644 --- a/gcc/objc/sarray.c +++ b/gcc/objc/sarray.c @@ -174,7 +174,8 @@ sarray_at_put(struct sarray* array, sidx index, void* element) /* The bucket was previously empty (or something like that), */ /* allocate a new. This is the effect of `lazy' allocation */ new_bucket = (struct sbucket*)__objc_xmalloc(sizeof(struct sbucket)); - memcpy((void *) new_bucket, (const void*)array->empty_bucket, sizeof(struct sbucket)); + memcpy((void *) new_bucket, (const void*)array->empty_bucket, + sizeof(struct sbucket)); new_bucket->version.version = array->version.version; *the_bucket = new_bucket; /* Prepared for install. */ -- cgit v1.1