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:
@@ -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)));
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user