You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Kamesh Jayachandran <ka...@collab.net> on 2006/11/20 18:02:13 UTC

[PATCH]Formatting fix to subversion/libsvn_ra_serf/replay.c

Hi All,
Find the attached patch and log.

With regards
Kamesh Jayachandran

Re: [PATCH]Formatting fix to subversion/libsvn_ra_serf/replay.c

Posted by Daniel Rall <dl...@collab.net>.
This file uses a one-parameter-per-line style.  I committed a patch in
that style to trunk in r22371.

On Mon, 20 Nov 2006, Kamesh Jayachandran wrote:

> Hi All,
> Find the attached patch and log.
> 
> With regards
> Kamesh Jayachandran

> [[[
> 
> Argument alignment set right.
> 
> * subversion/libsvn_ra_serf/replay.c
>   (start_replay, end_replay, cdata_replay): 
>    Arguments were aligned.
> 
> Patch by: Kamesh Jayachandran <ka...@collab.net>
> ]]]

> Index: subversion/libsvn_ra_serf/replay.c
> ===================================================================
> --- subversion/libsvn_ra_serf/replay.c	(revision 22356)
> +++ subversion/libsvn_ra_serf/replay.c	(working copy)
> @@ -134,10 +134,8 @@
>  }
>  
>  static svn_error_t *
> -start_replay(svn_ra_serf__xml_parser_t *parser,
> -          void *userData,
> -          svn_ra_serf__dav_props_t name,
> -          const char **attrs)
> +start_replay(svn_ra_serf__xml_parser_t *parser, void *userData,
> +             svn_ra_serf__dav_props_t name, const char **attrs)
>  {
>    replay_context_t *ctx = userData;
>    replay_state_e state;
> @@ -396,9 +394,8 @@
>  }
>  
>  static svn_error_t *
> -end_replay(svn_ra_serf__xml_parser_t *parser,
> -        void *userData,
> -        svn_ra_serf__dav_props_t name)
> +end_replay(svn_ra_serf__xml_parser_t *parser, void *userData,
> +           svn_ra_serf__dav_props_t name)
>  {
>    replay_context_t *ctx = userData;
>    replay_state_e state;
> @@ -471,10 +468,8 @@
>  }
>  
>  static svn_error_t *
> -cdata_replay(svn_ra_serf__xml_parser_t *parser,
> -          void *userData,
> -          const char *data,
> -          apr_size_t len)
> +cdata_replay(svn_ra_serf__xml_parser_t *parser, void *userData,
> +             const char *data, apr_size_t len)
>  {
>    replay_context_t *replay_ctx = userData;
>    replay_state_e state;