You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by mi...@apache.org on 2011/11/29 00:57:48 UTC

svn commit: r1207708 - in /apr/apr-util/branches/1.4.x: ./ dbm/apr_dbm_sdbm.c

Author: minfrin
Date: Mon Nov 28 23:57:47 2011
New Revision: 1207708

URL: http://svn.apache.org/viewvc?rev=1207708&view=rev
Log:
Suppress a potential warning about an ignored return value.

Modified:
    apr/apr-util/branches/1.4.x/   (props changed)
    apr/apr-util/branches/1.4.x/dbm/apr_dbm_sdbm.c

Propchange: apr/apr-util/branches/1.4.x/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Mon Nov 28 23:57:47 2011
@@ -1,4 +1,4 @@
-/apr/apr/trunk:781403,781409,784519,784592,789965,794508,917837-917838
+/apr/apr/trunk:781403,781409,784519,784592,789965,794508,917837-917838,1207704
 /apr/apr-util/branches/1.3.x:896410,979221-979222,979232,1001059,1002632,1002648,1002733,1003214,1003255,1003358,1003370,1003376,1003602,1005956,1005962,1006017,1006137,1154885
-/apr/apr-util/branches/1.5.x:1002504,1002584-1002585,1002620,1002622-1002623,1002628,1207683,1207690
+/apr/apr-util/branches/1.5.x:1002504,1002584-1002585,1002620,1002622-1002623,1002628,1207683,1207690,1207707
 /apr/apr-util/trunk:731033-731034,731225,731236,731291,731293,731379,743986,744009,745771,747612,747623,747630

Modified: apr/apr-util/branches/1.4.x/dbm/apr_dbm_sdbm.c
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.4.x/dbm/apr_dbm_sdbm.c?rev=1207708&r1=1207707&r2=1207708&view=diff
==============================================================================
--- apr/apr-util/branches/1.4.x/dbm/apr_dbm_sdbm.c (original)
+++ apr/apr-util/branches/1.4.x/dbm/apr_dbm_sdbm.c Mon Nov 28 23:57:47 2011
@@ -186,7 +186,7 @@ static apr_status_t vt_sdbm_nextkey(apr_
 {
     apr_sdbm_datum_t rd;
 
-    apr_sdbm_nextkey(dbm->file, &rd);
+    (void)apr_sdbm_nextkey(dbm->file, &rd);
 
     pkey->dptr = rd.dptr;
     pkey->dsize = rd.dsize;