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

Change param type from SLONG* to UCHAR* because we gain nothing with the old declaration, except forced casts.

This commit is contained in:
robocop 2008-12-22 10:06:43 +00:00
parent d969238b73
commit 5f6113f63b
3 changed files with 3 additions and 3 deletions

View File

@ -1585,7 +1585,7 @@ void BLB_put_slice( thread_db* tdbb,
bid* blob_id,
const UCHAR* sdl,
USHORT param_length,
const SLONG* param,
const UCHAR* param,
SLONG slice_length,
UCHAR* slice_addr)
{

View File

@ -53,7 +53,7 @@ Jrd::blb* BLB_open2(Jrd::thread_db*, Jrd::jrd_tra*, const Jrd::bid*, USHORT, con
void BLB_put_data(Jrd::thread_db*, Jrd::blb*, const UCHAR*, SLONG);
void BLB_put_segment(Jrd::thread_db*, Jrd::blb*, const UCHAR*, USHORT);
void BLB_put_slice(Jrd::thread_db*, Jrd::jrd_tra*, Jrd::bid*, const UCHAR*, USHORT,
const SLONG*, SLONG, UCHAR*);
const UCHAR*, SLONG, UCHAR*);
void BLB_release_array(Jrd::ArrayField*);
void BLB_scalar(Jrd::thread_db*, Jrd::jrd_tra*, const Jrd::bid*, USHORT, const SLONG*, Jrd::impure_value*);

View File

@ -2490,7 +2490,7 @@ ISC_STATUS GDS_PUT_SLICE(ISC_STATUS* user_status,
jrd_tra* transaction = find_transaction(tdbb, isc_segstr_wrong_db);
BLB_put_slice(tdbb, transaction, reinterpret_cast<bid*>(array_id),
sdl, param_length, reinterpret_cast<const SLONG*>(param), slice_length, slice);
sdl, param_length, param, slice_length, slice);
}
catch (const Exception& ex)
{