mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-02-02 10:00:38 +01:00
Fix MacOS build.
This commit is contained in:
parent
b0d2b71c9c
commit
a7368588e6
@ -7626,7 +7626,7 @@ string UserSavepointNode::internalPrint(NodePrinter& printer) const
|
||||
{
|
||||
StmtNode::internalPrint(printer);
|
||||
|
||||
NODE_PRINT(printer, command);
|
||||
NODE_PRINT(printer, (SSHORT) command);
|
||||
NODE_PRINT(printer, name);
|
||||
|
||||
return "UserSavepointNode";
|
||||
@ -9089,11 +9089,11 @@ static StmtNode* dsqlNullifyReturning(DsqlCompilerScratch* dsqlScratch, StmtNode
|
||||
ModifyNode* modifyNode;
|
||||
StoreNode* storeNode;
|
||||
|
||||
if (eraseNode = nodeAs<EraseNode>(input))
|
||||
if ((eraseNode = nodeAs<EraseNode>(input)))
|
||||
returning = eraseNode->statement;
|
||||
else if (modifyNode = nodeAs<ModifyNode>(input))
|
||||
else if ((modifyNode = nodeAs<ModifyNode>(input)))
|
||||
returning = modifyNode->statement2;
|
||||
else if (storeNode = nodeAs<StoreNode>(input))
|
||||
else if ((storeNode = nodeAs<StoreNode>(input)))
|
||||
returning = storeNode->statement2;
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user