diff options
author | drh <drh@noemail.net> | 2009-10-13 19:19:23 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2009-10-13 19:19:23 +0000 |
commit | fcb9f7ad7affbba5c46008fc76d649c14bef273b (patch) | |
tree | 5812771f091fa6937c009c6ef6aa4c5f0552c911 /src/trigger.c | |
parent | a46057b0fe641a0b413d3bbc99524c5280e3708d (diff) | |
download | sqlite-fcb9f7ad7affbba5c46008fc76d649c14bef273b.tar.gz sqlite-fcb9f7ad7affbba5c46008fc76d649c14bef273b.zip |
Fixed warnings with MSVC compile.
FossilOrigin-Name: e0aa50c382a56bb02eaa589619b7e670006a26b3
Diffstat (limited to 'src/trigger.c')
-rw-r--r-- | src/trigger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trigger.c b/src/trigger.c index 319f9bc70..82acfbfed 100644 --- a/src/trigger.c +++ b/src/trigger.c @@ -952,7 +952,7 @@ void sqlite3CodeRowTriggerDirect( ** invocation is disallowed if (a) the sub-program is really a trigger, ** not a foreign key action, and (b) the flag to enable recursive triggers ** is clear. */ - sqlite3VdbeChangeP5(v, p->zName && !(pParse->db->flags&SQLITE_RecTriggers)); + sqlite3VdbeChangeP5(v, (u8)(p->zName && !(pParse->db->flags&SQLITE_RecTriggers))); } } |