You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by ni...@apache.org on 2005/10/14 16:27:12 UTC

svn commit: r321134 - in /apr/apr-util/trunk: dbd/apr_dbd_sqlite3.c include/private/apr_dbd_internal.h

Author: niq
Date: Fri Oct 14 07:27:08 2005
New Revision: 321134

URL: http://svn.apache.org/viewcvs?rev=321134&view=rev
Log:
Shut up compiler warnings

Modified:
    apr/apr-util/trunk/dbd/apr_dbd_sqlite3.c
    apr/apr-util/trunk/include/private/apr_dbd_internal.h

Modified: apr/apr-util/trunk/dbd/apr_dbd_sqlite3.c
URL: http://svn.apache.org/viewcvs/apr/apr-util/trunk/dbd/apr_dbd_sqlite3.c?rev=321134&r1=321133&r2=321134&view=diff
==============================================================================
--- apr/apr-util/trunk/dbd/apr_dbd_sqlite3.c (original)
+++ apr/apr-util/trunk/dbd/apr_dbd_sqlite3.c Fri Oct 14 07:27:08 2005
@@ -342,7 +342,6 @@
 {
     apr_dbd_t *sql = NULL;
     sqlite3 *conn = NULL;
-    apr_status_t res;
     int sqlres;
     if (!params)
         return NULL;

Modified: apr/apr-util/trunk/include/private/apr_dbd_internal.h
URL: http://svn.apache.org/viewcvs/apr/apr-util/trunk/include/private/apr_dbd_internal.h?rev=321134&r1=321133&r2=321134&view=diff
==============================================================================
--- apr/apr-util/trunk/include/private/apr_dbd_internal.h (original)
+++ apr/apr-util/trunk/include/private/apr_dbd_internal.h Fri Oct 14 07:27:08 2005
@@ -256,8 +256,8 @@
 };
 
 /* Export mutex lock/unlock for drivers that need it */
-apr_status_t apr_dbd_mutex_lock();
-apr_status_t apr_dbd_mutex_unlock();
+apr_status_t apr_dbd_mutex_lock(void);
+apr_status_t apr_dbd_mutex_unlock(void);
 
 #ifdef __cplusplus
 }