Author: stefan2
Date: Sat Jul 31 20:22:50 2010
New Revision: 981087

URL: http://svn.apache.org/viewvc?rev=981087&view=rev
Log:
Code formatting only: Inserting a few spaces where they belong.

* subversion/libsvn_subr/cache-membuffer.c
  (membuffer_cache_set, membuffer_cache_get, 
   svn_cache__create_membuffer_cache): minor formatting fixes

Modified:
    subversion/branches/performance/subversion/libsvn_subr/cache-membuffer.c

Modified: 
subversion/branches/performance/subversion/libsvn_subr/cache-membuffer.c
URL: 
http://svn.apache.org/viewvc/subversion/branches/performance/subversion/libsvn_subr/cache-membuffer.c?rev=981087&r1=981086&r2=981087&view=diff
==============================================================================
--- subversion/branches/performance/subversion/libsvn_subr/cache-membuffer.c 
(original)
+++ subversion/branches/performance/subversion/libsvn_subr/cache-membuffer.c 
Sat Jul 31 20:22:50 2010
@@ -737,7 +737,7 @@ svn_cache__membuffer_cache_create(svn_me
  * The SERIALIZER is called to transform the ITEM into a single,
  * flat data buffer. Temporary allocations may be done in POOL.
  */
-static svn_error_t* 
+static svn_error_t *
 membuffer_cache_set(svn_membuffer_t *cache,
                     const void *key,
                     apr_size_t key_len,
@@ -821,7 +821,7 @@ membuffer_cache_get(svn_membuffer_t *cac
   svn_error_t *err = SVN_NO_ERROR;
 
   /* find the entry group that will hold the key.
-  */
+   */
   group_index = get_group_index(cache, key, key_len, to_find, pool);
   if (group_index == -1)
     {
@@ -1103,7 +1103,7 @@ svn_cache__create_membuffer_cache(svn_ca
   /* allocate the cache header structures
    */
   svn_cache__t *wrapper = apr_pcalloc(pool, sizeof(*wrapper));
-  svn_membuffer_cache_t* cache = apr_palloc(pool, sizeof(*cache));
+  svn_membuffer_cache_t *cache = apr_palloc(pool, sizeof(*cache));
 
   /* initialize our internal cache header
    */


Reply via email to