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

Misc: where did those phantom spaces come from?

This commit is contained in:
robocop 2004-11-16 06:22:12 +00:00
parent 4480296ff5
commit a0fa398757
2 changed files with 4 additions and 4 deletions

View File

@ -11,9 +11,9 @@ ClumpletReader::ClumpletReader(bool isTagged, const UCHAR* buffer, size_t buffLe
{
}
void ClumpletReader::usage_mistake (const char* what) {
void ClumpletReader::usage_mistake(const char* what) {
fatal_exception::raiseFmt(
"Internal error when using clumplet API: %s", what);
"Internal error when using clumplet API: %s", what);
}
void ClumpletReader::invalid_structure() {

View File

@ -24,7 +24,7 @@
* Contributor(s): ______________________________________.
*
*
* $Id: ClumpletReader.h,v 1.4 2004-11-15 16:34:47 alexpeshkoff Exp $
* $Id: ClumpletReader.h,v 1.5 2004-11-16 06:22:12 robocop Exp $
*
*/
@ -75,7 +75,7 @@ protected:
// sensible, certainly not overwrite memory or read past the end of buffer
// This appears to be a programming error in buffer access pattern
virtual void usage_mistake (const char* what);
virtual void usage_mistake(const char* what);
// This is called when passed buffer appears invalid
virtual void invalid_structure();