8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 18:03:03 +01:00

Fix BLR print.

This commit is contained in:
Adriano dos Santos Fernandes 2024-09-08 14:38:23 -03:00
parent 500d89675d
commit 2e4980bb21
2 changed files with 2 additions and 2 deletions

View File

@ -259,7 +259,7 @@ static const struct
{"invoke_function", invoke_function}, {"invoke_function", invoke_function},
{"invoke_procedure", invsel_procedure}, {"invoke_procedure", invsel_procedure},
{"select_procedure", invsel_procedure}, {"select_procedure", invsel_procedure},
{"blr_default_arg", zero}, {"default_arg", zero},
{"cast_format", cast_format}, {"cast_format", cast_format},
{0, 0} {0, 0}
}; };

View File

@ -420,7 +420,7 @@ static const UCHAR
in_list[] = { op_line, op_verb, op_indent, op_word, op_line, op_args, 0}, in_list[] = { op_line, op_verb, op_indent, op_word, op_line, op_args, 0},
invoke_function[] = { op_invoke_function, 0 }, invoke_function[] = { op_invoke_function, 0 },
invsel_procedure[] = { op_invsel_procedure, 0 }, invsel_procedure[] = { op_invsel_procedure, 0 },
cast_format[] = { op_byte, op_literal, op_dtype, op_line, op_verb, 0 }; cast_format[] = { op_line, op_indent, op_byte, op_literal, op_line, op_indent, op_dtype, op_line, op_verb, 0 };
#include "../jrd/blp.h" #include "../jrd/blp.h"