diff options
author | drh <drh@noemail.net> | 2003-06-23 15:15:03 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2003-06-23 15:15:03 +0000 |
commit | 18706c08cb5a995c69ee7213a927cde5bbffcb1f (patch) | |
tree | 7054d36f6af854cfac2a470ade90eb9bc61987a7 /src/main.c | |
parent | 6cb2c52d9655ca2ae857e43aded74c3ec3f5ff9c (diff) | |
download | sqlite-18706c08cb5a995c69ee7213a927cde5bbffcb1f.tar.gz sqlite-18706c08cb5a995c69ee7213a927cde5bbffcb1f.zip |
Remove a surplus "return" statement accidentaly left in check-in (1032). (CVS 1033)
FossilOrigin-Name: c697410af4a61d2037e7e319efe8dd78d7b83365
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index 56062b69b..1c3b12021 100644 --- a/src/main.c +++ b/src/main.c @@ -14,7 +14,7 @@ ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** -** $Id: main.c,v 1.136 2003/06/23 11:06:02 drh Exp $ +** $Id: main.c,v 1.137 2003/06/23 15:15:03 drh Exp $ */ #include "sqliteInt.h" #include "os.h" @@ -928,7 +928,6 @@ void *sqlite_trace(sqlite *db, void (*xTrace)(void*,const char*), void *pArg){ db->xTrace = xTrace; db->pTraceArg = pArg; return pOld; - return 0; } /* |