Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 64776 invoked by uid 500); 24 Jul 2001 13:50:28 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 64765 invoked from network); 24 Jul 2001 13:50:28 -0000 Date: 24 Jul 2001 13:47:46 -0000 Message-ID: <20010724134746.65891.qmail@icarus.apache.org> From: trawick@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/threadproc/unix thread.c X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N trawick 01/07/24 06:47:46 Modified: threadproc/unix thread.c Log: fix a warning for dummy_worker(); it wasn't static and didn't have a prototype Revision Changes Path 1.41 +1 -1 apr/threadproc/unix/thread.c Index: thread.c =================================================================== RCS file: /home/cvs/apr/threadproc/unix/thread.c,v retrieving revision 1.40 retrieving revision 1.41 diff -u -r1.40 -r1.41 --- thread.c 2001/07/24 05:16:32 1.40 +++ thread.c 2001/07/24 13:47:46 1.41 @@ -116,7 +116,7 @@ return APR_NOTDETACH; } -void *dummy_worker(void *opaque) +static void *dummy_worker(void *opaque) { apr_thread_t *thread = (apr_thread_t*)opaque; return thread->func(thread, thread->data);