You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rp...@apache.org on 2010/02/03 20:50:59 UTC

svn commit: r906206 - /apr/apr/trunk/include/apr_file_io.h

Author: rpluem
Date: Wed Feb  3 19:50:59 2010
New Revision: 906206

URL: http://svn.apache.org/viewvc?rev=906206&view=rev
Log:
* Fix typo in prototype

Modified:
    apr/apr/trunk/include/apr_file_io.h

Modified: apr/apr/trunk/include/apr_file_io.h
URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_file_io.h?rev=906206&r1=906205&r2=906206&view=diff
==============================================================================
--- apr/apr/trunk/include/apr_file_io.h (original)
+++ apr/apr/trunk/include/apr_file_io.h Wed Feb  3 19:50:59 2010
@@ -943,7 +943,7 @@
 
 
 APR_DECLARE(apr_status_t) apr_file_rotating_check(apr_file_t *thefile);
-APR_DECLARE(apr_status_t) apr_file_rotating_manual_check(apr_file_t *thefile, apr_time_t time);
+APR_DECLARE(apr_status_t) apr_file_rotating_check_manual(apr_file_t *thefile, apr_time_t time);
 
 /** @} */
 



Re: svn commit: r906206 - /apr/apr/trunk/include/apr_file_io.h

Posted by "William A. Rowe Jr." <wr...@rowe-clan.net>.
On 2/3/2010 1:50 PM, rpluem@apache.org wrote:
> +APR_DECLARE(apr_status_t) apr_file_rotating_check_manual(apr_file_t *thefile, apr_time_t time);

_check is the verb (method) - or _manual_check if you want to be wordy.
Can we fix this this to conform to style?