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

Change wrong used constant (Suggested by Claudio V.)

This commit is contained in:
arnobrinkman 2003-09-17 23:42:47 +00:00
parent a4f7ba99a8
commit 65761dd0b3

View File

@ -5900,7 +5900,7 @@ static SSHORT print_item(TEXT ** s,
vary->vary_string[vary->vary_length] = 0;
// If CHARACTER SET OCTETS, print two hex digits per octet
if (var->sqlsubtype == BLOB_text)
if (var->sqlsubtype == 1)
{
SLONG hex_len = 2 * vary->vary_length;
char *buff2 = static_cast<char*>(ISQL_ALLOC(hex_len + 1));