1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Fixed warnings with MSVC compile.

FossilOrigin-Name: e0aa50c382a56bb02eaa589619b7e670006a26b3
This commit is contained in:
drh
2009-10-13 19:19:23 +00:00
parent a46057b0fe
commit fcb9f7ad7a
5 changed files with 11 additions and 21 deletions

View File

@@ -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)));
}
}