You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2011/07/26 14:09:33 UTC

svn commit: r1151068 - /subversion/trunk/subversion/libsvn_subr/cmdline.c

Author: stsp
Date: Tue Jul 26 12:09:32 2011
New Revision: 1151068

URL: http://svn.apache.org/viewvc?rev=1151068&view=rev
Log:
* subversion/libsvn_subr/cmdline.c
  (svn_cmdline_create_auth_baton): Convert 'space-before-paren' formatting
    to 'no-space-before-paren' as per our coding style guidelines.

Modified:
    subversion/trunk/subversion/libsvn_subr/cmdline.c

Modified: subversion/trunk/subversion/libsvn_subr/cmdline.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/cmdline.c?rev=1151068&r1=1151067&r2=1151068&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/cmdline.c (original)
+++ subversion/trunk/subversion/libsvn_subr/cmdline.c Tue Jul 26 12:09:32 2011
@@ -459,8 +459,8 @@ svn_cmdline_create_auth_baton(svn_auth_b
   apr_array_header_t *providers;
 
   /* Populate the registered providers with the platform-specific providers */
-  SVN_ERR(svn_auth_get_platform_specific_client_providers
-            (&providers, cfg, pool));
+  SVN_ERR(svn_auth_get_platform_specific_client_providers(&providers,
+                                                          cfg, pool));
 
   /* If we have a cancellation function, cram it and the stuff it
      needs into the prompt baton. */



Re: svn commit: r1151068 - /subversion/trunk/subversion/libsvn_subr/cmdline.c

Posted by Noorul Islam K M <no...@collab.net>.
stsp@apache.org writes:

> Author: stsp
> Date: Tue Jul 26 12:09:32 2011
> New Revision: 1151068
>
> URL: http://svn.apache.org/viewvc?rev=1151068&view=rev
> Log:
> * subversion/libsvn_subr/cmdline.c
>   (svn_cmdline_create_auth_baton): Convert 'space-before-paren' formatting
>     to 'no-space-before-paren' as per our coding style guidelines.
>
> Modified:
>     subversion/trunk/subversion/libsvn_subr/cmdline.c
>
> Modified: subversion/trunk/subversion/libsvn_subr/cmdline.c
> URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/cmdline.c?rev=1151068&r1=1151067&r2=1151068&view=diff
> ==============================================================================
> --- subversion/trunk/subversion/libsvn_subr/cmdline.c (original)
> +++ subversion/trunk/subversion/libsvn_subr/cmdline.c Tue Jul 26 12:09:32 2011
> @@ -459,8 +459,8 @@ svn_cmdline_create_auth_baton(svn_auth_b
>    apr_array_header_t *providers;
>  
>    /* Populate the registered providers with the platform-specific providers */
> -  SVN_ERR(svn_auth_get_platform_specific_client_providers
> -            (&providers, cfg, pool));
> +  SVN_ERR(svn_auth_get_platform_specific_client_providers(&providers,
> +                                                          cfg, pool));
>  
>    /* If we have a cancellation function, cram it and the stuff it
>       needs into the prompt baton. */

Just ran the following command to find bad style in .c files.

../tools/dev/find-bad-style.py **/*.c

Attached is the output. I think we should live with it.

Thanks and Regards
Noorul