jfclere 01/11/07 06:25:41
Modified: dbm apr_dbm.c
Log:
My Solaris native compiler was not happy with the return
(void function cannot return value).
Revision Changes Path
1.32 +1 -1 apr-util/dbm/apr_dbm.c
Index: apr_dbm.c
===================================================================
RCS file: /home/cvs/apr-util/dbm/apr_dbm.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- apr_dbm.c 2001/11/07 01:24:53 1.31
+++ apr_dbm.c 2001/11/07 14:25:40 1.32
@@ -332,7 +332,7 @@
/* ### one day, we will pass in a DBM name and need to look it up.
### for now, it is constant. */
- return (*DBM_VTABLE.getusednames)(p, pathname, used1, used2);
+ (*DBM_VTABLE.getusednames)(p, pathname, used1, used2);
}
/* Most DBM libraries take a POSIX mode for creating files. Don't trust