[GRASS-SVN] r52693 - in grass/branches/develbranch_6: include lib/db/dbmi_base
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Aug 17 05:28:06 PDT 2012
Author: mmetz
Date: 2012-08-17 05:28:05 -0700 (Fri, 17 Aug 2012)
New Revision: 52693
Modified:
grass/branches/develbranch_6/include/proto_dbmi.h
grass/branches/develbranch_6/lib/db/dbmi_base/alloc.c
Log:
dblib: fix return type
Modified: grass/branches/develbranch_6/include/proto_dbmi.h
===================================================================
--- grass/branches/develbranch_6/include/proto_dbmi.h 2012-08-17 11:51:16 UTC (rev 52692)
+++ grass/branches/develbranch_6/include/proto_dbmi.h 2012-08-17 12:28:05 UTC (rev 52693)
@@ -129,7 +129,7 @@
int db_fetch(dbCursor * cursor, int position, int *more);
int db_find_database(dbDriver * driver, dbHandle * handle, int *found);
dbAddress db_find_token(dbToken token);
-void *db_free(void *s);
+void db_free(void *s);
void db_free_column(dbColumn * column);
void db_free_cursor(dbCursor * cursor);
void db_free_cursor_column_flags(dbCursor * cursor);
Modified: grass/branches/develbranch_6/lib/db/dbmi_base/alloc.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_base/alloc.c 2012-08-17 11:51:16 UTC (rev 52692)
+++ grass/branches/develbranch_6/lib/db/dbmi_base/alloc.c 2012-08-17 12:28:05 UTC (rev 52693)
@@ -76,12 +76,12 @@
}
/*!
- \fn void *db_free (void *s)
+ \fn void db_free (void *s)
\brief
\return
\param
*/
-void *db_free(void *s)
+void db_free(void *s)
{
free(s);
}
More information about the grass-commit
mailing list