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

Warnings.

This commit is contained in:
robocop 2009-11-14 09:20:54 +00:00
parent 263bf50055
commit b9106f313b
2 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ string DbImplementation::implementation() const
const char* DbImplementation::endianess() const
{
return di_flags & EndianMask == EndianBig ? "big" : "little";
return (di_flags & EndianMask) == EndianBig ? "big" : "little";
}
const DbImplementation DbImplementation::current(

View File

@ -1119,7 +1119,7 @@ int API_ROUTINE isc_version(FB_API_HANDLE* handle, FPTR_VERSION_CALLBACK routine
}
void API_ROUTINE isc_format_implementation(USHORT implementation_nr,
void API_ROUTINE isc_format_implementation(USHORT /*implementation_nr*/,
USHORT ibuflen, TEXT* ibuf,
USHORT impl_class_nr,
USHORT cbuflen, TEXT* cbuf)