1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-10 01:02:56 +03:00

Fix some minor compiler warnings. Added sqlite3Isalpha() for use in

the soundex() function. (CVS 6203)

FossilOrigin-Name: bfc71edca471221add6b32b867d0b15171974eaf
This commit is contained in:
drh
2009-01-24 11:30:42 +00:00
parent 25f42fe7a1
commit dc86e2b2cd
8 changed files with 29 additions and 27 deletions

View File

@@ -18,7 +18,7 @@
** file simultaneously, or one process from reading the database while
** another is writing.
**
** @(#) $Id: pager.c,v 1.558 2009/01/23 16:45:01 danielk1977 Exp $
** @(#) $Id: pager.c,v 1.559 2009/01/24 11:30:43 drh Exp $
*/
#ifndef SQLITE_OMIT_DISKIO
#include "sqliteInt.h"
@@ -4328,6 +4328,7 @@ static int pager_incr_changecounter(Pager *pPager, int isDirectMode){
#ifndef SQLITE_ENABLE_ATOMIC_WRITE
const int isDirect = 0;
assert( isDirectMode==0 );
UNUSED_PARAMETER(isDirectMode);
#else
const int isDirect = isDirectMode;
#endif