aboutsummaryrefslogtreecommitdiff
path: root/src/trigger.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2009-10-13 19:19:23 +0000
committerdrh <drh@noemail.net>2009-10-13 19:19:23 +0000
commitfcb9f7ad7affbba5c46008fc76d649c14bef273b (patch)
tree5812771f091fa6937c009c6ef6aa4c5f0552c911 /src/trigger.c
parenta46057b0fe641a0b413d3bbc99524c5280e3708d (diff)
downloadsqlite-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.c2
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)));
}
}