Skip to content

Commit 9d440ac

Browse files
committed
Fixed type
1 parent 4e18e08 commit 9d440ac

File tree

1 file changed

+1
-1
lines changed
  • Provider/src/FirebirdSql.Data.FirebirdClient/Services

1 file changed

+1
-1
lines changed

Provider/src/FirebirdSql.Data.FirebirdClient/Services/FbService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ private void ProcessQuery(byte[] items, ServiceParameterBuffer spb, Action<bool,
265265
var length = GetLength(buffer, 2, ref pos);
266266
if (length == 0)
267267
continue;
268-
queryResponseAction(truncated, IscHelper.VaxInteger(buffer, pos, 4));
268+
queryResponseAction(truncated, (int)IscHelper.VaxInteger(buffer, pos, 4));
269269
pos += length;
270270
truncated = false;
271271
break;

0 commit comments

Comments
 (0)