aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2002-03-12 23:10:04 +0000
committerdrh <drh@noemail.net>2002-03-12 23:10:04 +0000
commit56c0e926f15d826ad8f30398e1d5df2994b7c32b (patch)
treeedc2f43d3dcbeabc51b9a01525d25e3e8020a962 /src
parent1f245e488a7fb50c3793fe3be961eff8ea1e794c (diff)
downloadsqlite-56c0e926f15d826ad8f30398e1d5df2994b7c32b.tar.gz
sqlite-56c0e926f15d826ad8f30398e1d5df2994b7c32b.zip
Fix the return type of the xStep function in the FuncDef structure
definition. (CVS 428) FossilOrigin-Name: 753adb789e1624ceeb52066df350dcd99aa4e3df
Diffstat (limited to 'src')
-rw-r--r--src/sqliteInt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index e404a7388..0cb7eaafd 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
-** @(#) $Id: sqliteInt.h,v 1.103 2002/03/06 22:01:36 drh Exp $
+** @(#) $Id: sqliteInt.h,v 1.104 2002/03/12 23:10:05 drh Exp $
*/
#include "sqlite.h"
#include "hash.h"
@@ -195,7 +195,7 @@ struct sqlite {
*/
struct FuncDef {
void (*xFunc)(sqlite_func*,int,const char**); /* Regular function */
- void *(*xStep)(sqlite_func*,int,const char**); /* Aggregate function step */
+ void (*xStep)(sqlite_func*,int,const char**); /* Aggregate function step */
void (*xFinalize)(sqlite_func*); /* Aggregate function finializer */
int nArg; /* Number of arguments */
void *pUserData; /* User data parameter */