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

Correction.

This commit is contained in:
asfernandes 2016-01-30 23:40:20 +00:00
parent af9cd08f83
commit 0e228836a8

View File

@ -180,7 +180,7 @@ public:
template <typename T> template <typename T>
T to(const unsigned char* b, unsigned o) T to(const unsigned char* b, unsigned o)
{ {
return *((T*)(b + o)); return *((T*) (b + o));
} }
int main() int main()
@ -254,7 +254,7 @@ int main()
prov->release(); prov->release();
status.dispose(); status.dispose();
delete buffer; delete[] buffer;
return rc; return rc;
} }