Commit 69109565 authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Clean up new compiler emit noise


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95455 13f79535-47bb-0310-9956-ffa450edef68
parent abb9c2f9
Loading
Loading
Loading
Loading
+1 −1
Changes for server/log.c: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -629,7 +629,7 @@ AP_DECLARE(void) ap_log_pid(apr_pool_t *p, const char *filename)
AP_DECLARE(apr_status_t) ap_read_pid(apr_pool_t *p, const char *filename,
                                     pid_t *mypid)
{
    const int BUFFER_SIZE = sizeof(long) * 3 + 2; /* see apr_ltoa */
    const apr_size_t BUFFER_SIZE = sizeof(long) * 3 + 2; /* see apr_ltoa */
    apr_file_t *pid_file = NULL;
    apr_status_t rv;
    const char *fname;