|
From: Adriano d. S. F. <asf...@us...> - 2008-04-30 15:48:00
|
Build Version : T2.5.0.19674 Firebird 2.5 Unstable (writeBuildNum.sh,v 1.19834 2008/04/30 15:48:01 asfernandes ) Update of /cvsroot/firebird/firebird2/src/jrd In directory sc8-pr-cvs17.sourceforge.net:/tmp/cvs-serv2540/src/jrd Modified Files: Tag: B2_5_ExtEngines met.epp Log Message: Correction Index: met.epp =================================================================== RCS file: /cvsroot/firebird/firebird2/src/jrd/met.epp,v retrieving revision 1.239.2.5 retrieving revision 1.239.2.6 diff -b -U3 -r1.239.2.5 -r1.239.2.6 --- met.epp 26 Apr 2008 23:20:39 -0000 1.239.2.5 +++ met.epp 30 Apr 2008 15:47:55 -0000 1.239.2.6 @@ -4704,10 +4704,10 @@ tmp.add(blr_assignment); tmp.add(blr_parameter2); tmp.add(1); // output message - tmp.add(i); - tmp.add(i >> 8); - tmp.add(i + 1); // null indicator - tmp.add((i + 1) >> 8); + tmp.add((i * 2)); + tmp.add((i * 2) >> 8); + tmp.add((i * 2) + 1); // null indicator + tmp.add(((i * 2) + 1) >> 8); tmp.add(blr_null); } |