Thanks for the clarification Blair and Lieven.
With regards
Kamesh Jayachandran
Lieven Govaerts wrote:
> Kamesh Jayachandran wrote:
>
>> Will it work on all compilers? I mean 'declaration after a function
>> call' rule.
>>
>>
>
> It's ok here, because that function call is just used to initialize the
> newly declared variable.
>
> You can't add a declaration after a statement in C89, but a variable
> declaration can include an initialization (like in this example).
>
> Lieven
>
>
>> dlr@tigris.org wrote:
>>
>>> Author: dlr
>>> Date: Tue Nov 13 21:28:52 2007
>>> New Revision: 27807
>>>
>>> Log:
>>> Stylistic tweak.
>>>
>>> * subversion/mod_dav_svn/repos.c
>>> (capabilities_as_list): Swap order of local variable declaration.
>>>
>>>
>>> Modified:
>>> trunk/subversion/mod_dav_svn/repos.c
>>>
>>> Modified: trunk/subversion/mod_dav_svn/repos.c
>>> URL:
>>> http://svn.collab.net/viewvc/svn/trunk/subversion/mod_dav_svn/repos.c?pathrev=27807&r1=27806&r2=27807
>>>
>>> ==============================================================================
>>>
>>> --- trunk/subversion/mod_dav_svn/repos.c (original)
>>> +++ trunk/subversion/mod_dav_svn/repos.c Tue Nov 13 21:28:52 2007
>>> @@ -1441,9 +1441,9 @@
>>> static apr_array_header_t *
>>> capabilities_as_list(apr_hash_t *capabilities, apr_pool_t *pool)
>>> {
>>> - apr_hash_index_t *hi;
>>> apr_array_header_t *list = apr_array_make(pool,
>>> apr_hash_count(capabilities),
>>> sizeof(char *));
>>> + apr_hash_index_t *hi;
>>>
>>> for (hi = apr_hash_first(pool, capabilities); hi; hi =
>>> apr_hash_next(hi))
>>> {
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: svn-unsubscribe@subversion.tigris.org
>>> For additional commands, e-mail: svn-help@subversion.tigris.org
>>>
>>>
>>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
>> For additional commands, e-mail: dev-help@subversion.tigris.org
>>
>>
>>
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Nov 14 09:26:25 2007