diff options
author | danielk1977 <danielk1977@noemail.net> | 2004-06-16 12:00:29 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2004-06-16 12:00:29 +0000 |
commit | cfe9a69f907d71a819aa4f86f1b56ed74840ac26 (patch) | |
tree | 6bbc2c17726784af35634706edc35a951ddc297b /src/expr.c | |
parent | 8def5ea2034aa9aea0d271b2575492b87f6ad703 (diff) | |
download | sqlite-cfe9a69f907d71a819aa4f86f1b56ed74840ac26.tar.gz sqlite-cfe9a69f907d71a819aa4f86f1b56ed74840ac26.zip |
Trivial modifications to prevent compiler warnings. (CVS 1606)
FossilOrigin-Name: 6001c5e1ced08096bb404e72ff533b7edcc896ec
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c index d43eb0dbf..568447bf4 100644 --- a/src/expr.c +++ b/src/expr.c @@ -12,7 +12,7 @@ ** This file contains routines used for analyzing expressions and ** for generating VDBE code that evaluates expressions in SQLite. ** -** $Id: expr.c,v 1.142 2004/06/15 16:51:01 danielk1977 Exp $ +** $Id: expr.c,v 1.143 2004/06/16 12:00:50 danielk1977 Exp $ */ #include "sqliteInt.h" #include <ctype.h> @@ -1160,7 +1160,7 @@ void sqlite3ExprCode(Parse *pParse, Expr *pExpr){ case TK_FLOAT: op = OP_Real; break; case TK_STRING: op = OP_String8; break; case TK_BLOB: op = OP_HexBlob; break; - default: break; + default: op = 0; break; } switch( pExpr->op ){ case TK_COLUMN: { |