You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2007/06/01 00:08:45 UTC

svn commit: r543279 - /apr/apr/trunk/threadproc/win32/proc.c

Author: wrowe
Date: Thu May 31 15:08:44 2007
New Revision: 543279

URL: http://svn.apache.org/viewvc?view=rev&rev=543279
Log:
Suppress warning of unused static function.

PR: 39868
Submitted by: Curt Arnold <carnold apache.org>

Modified:
    apr/apr/trunk/threadproc/win32/proc.c

Modified: apr/apr/trunk/threadproc/win32/proc.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/threadproc/win32/proc.c?view=diff&rev=543279&r1=543278&r2=543279
==============================================================================
--- apr/apr/trunk/threadproc/win32/proc.c (original)
+++ apr/apr/trunk/threadproc/win32/proc.c Thu May 31 15:08:44 2007
@@ -201,6 +201,7 @@
     return APR_SUCCESS;
 }
 
+#ifndef _WIN32_WCE
 static apr_status_t attr_cleanup(void *theattr)
 {
     apr_procattr_t *attr = (apr_procattr_t *)theattr;    
@@ -209,6 +210,7 @@
     attr->user_token = NULL;
     return APR_SUCCESS;
 }
+#endif
 
 APR_DECLARE(apr_status_t) apr_procattr_user_set(apr_procattr_t *attr, 
                                                 const char *username,